diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 00:55:17 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:41:01 +0200 |
commit | 8a67b20232b7bde62269c1f435bebd1af79fba49 (patch) | |
tree | 874ef4c0b90bc3a4352de63a6768e961853286e5 | |
parent | 83e96418f78360a470fc284f559b86829036b384 (diff) | |
download | ffmpeg-8a67b20232b7bde62269c1f435bebd1af79fba49.tar.gz |
avcodec/m101: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/m101.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/m101.c b/libavcodec/m101.c index 795a4fba63..dd0ace76f5 100644 --- a/libavcodec/m101.c +++ b/libavcodec/m101.c @@ -113,4 +113,5 @@ const AVCodec ff_m101_decoder = { .init = m101_decode_init, .decode = m101_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |