diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-20 03:53:42 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-24 11:35:03 +0100 |
commit | f1919dc8fa391debebb339d5ab2268567783411e (patch) | |
tree | 8210e871d830bebdabd0eb8c3b1c6af0c5c7a388 | |
parent | 9a61326b0fa2f4c10e08aa4fd795ae2b0f4310bd (diff) | |
download | ffmpeg-f1919dc8fa391debebb339d5ab2268567783411e.tar.gz |
avcodec/mss4: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/mss4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mss4.c b/libavcodec/mss4.c index c421a07c5d..a6d036f3f7 100644 --- a/libavcodec/mss4.c +++ b/libavcodec/mss4.c @@ -678,5 +678,5 @@ AVCodec ff_mts2_decoder = { .close = mss4_decode_end, .decode = mss4_decode_frame, .capabilities = AV_CODEC_CAP_DR1, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_INIT_THREADSAFE, }; |