summaryrefslogtreecommitdiff
path: root/libavcodec/argo.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-30 17:23:40 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 03:51:00 +0200
commitc549a94b9d2e8501d0ed809d0014483c05a1f8d5 (patch)
tree05f9ffeb74fe4853a0fc0367652755ace3930f68 /libavcodec/argo.c
parentf8129134516ebce4fcb3ac1dc0f92a495bc8adb0 (diff)
downloadffmpeg-c549a94b9d2e8501d0ed809d0014483c05a1f8d5.tar.gz
avcodec/argo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/argo.c')
-rw-r--r--libavcodec/argo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/argo.c b/libavcodec/argo.c
index 0df66f1cee..87c646f56c 100644
--- a/libavcodec/argo.c
+++ b/libavcodec/argo.c
@@ -736,5 +736,5 @@ const AVCodec ff_argo_decoder = {
.flush = decode_flush,
.close = decode_close,
.capabilities = AV_CODEC_CAP_DR1,
- .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};