diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 16:42:37 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:44:46 +0200 |
commit | 8b395a512344b562b55105ec482c544316ae3350 (patch) | |
tree | a3dd17b25d69d0073064633325a76db2bc5783f4 /libavcodec/mss1.c | |
parent | e48c11523f1486e5587001c9cb0b5328e8fced20 (diff) | |
download | ffmpeg-8b395a512344b562b55105ec482c544316ae3350.tar.gz |
avcodec/mss1: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/mss1.c')
-rw-r--r-- | libavcodec/mss1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mss1.c b/libavcodec/mss1.c index 10c2c34eb4..a9a7a81d21 100644 --- a/libavcodec/mss1.c +++ b/libavcodec/mss1.c @@ -228,4 +228,5 @@ const AVCodec ff_mss1_decoder = { .close = mss1_decode_end, .decode = mss1_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |