summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-30 18:27:58 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 03:55:58 +0200
commit344bd79455237691e02f9c45bec0f42d4a2bee18 (patch)
tree9eb2641787f105bb8d6c816495fc49375e59e246
parentd537933e73887aa44dd13d9b780b7095716909c5 (diff)
avcodec/targa_y216dec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r--libavcodec/targa_y216dec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/targa_y216dec.c b/libavcodec/targa_y216dec.c
index d002c1006a..93b5148a18 100644
--- a/libavcodec/targa_y216dec.c
+++ b/libavcodec/targa_y216dec.c
@@ -81,4 +81,5 @@ const AVCodec ff_targa_y216_decoder = {
.init = y216_decode_init,
.decode = y216_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};