diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 21:20:23 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:12:21 +0200 |
commit | 072d2caf427bc7f755c2f23b9d7188be4cd6cee8 (patch) | |
tree | 7cbe51a96592668975faf24e0cbfc3ee33ed1f5b | |
parent | f95e1a7355df50485581f0f4b91f47d8c572a9f9 (diff) | |
download | ffmpeg-072d2caf427bc7f755c2f23b9d7188be4cd6cee8.tar.gz |
avcodec/flicvideo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/flicvideo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index db35d917a9..47ca77f62e 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -1112,4 +1112,5 @@ const AVCodec ff_flic_decoder = { .close = flic_decode_end, .decode = flic_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |