diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 17:23:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:51:00 +0200 |
commit | c549a94b9d2e8501d0ed809d0014483c05a1f8d5 (patch) | |
tree | 05f9ffeb74fe4853a0fc0367652755ace3930f68 | |
parent | f8129134516ebce4fcb3ac1dc0f92a495bc8adb0 (diff) | |
download | ffmpeg-c549a94b9d2e8501d0ed809d0014483c05a1f8d5.tar.gz |
avcodec/argo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/argo.c | 2 |
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, }; |