diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 12:43:12 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:42:44 +0200 |
commit | b8c0fb34ec569df5a0dd52b6bbda2f94b8c77a35 (patch) | |
tree | b2e71b2d17740052d134335de2bf89c6e5d833f0 | |
parent | cf728ce04184400846147753b35cb4865dbaa339 (diff) | |
download | ffmpeg-b8c0fb34ec569df5a0dd52b6bbda2f94b8c77a35.tar.gz |
avcodec/mmvideo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/mmvideo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mmvideo.c b/libavcodec/mmvideo.c index 11a819dc6d..8dfcc71934 100644 --- a/libavcodec/mmvideo.c +++ b/libavcodec/mmvideo.c @@ -248,4 +248,5 @@ const AVCodec ff_mmvideo_decoder = { .close = mm_decode_end, .decode = mm_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |