diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 23:08:05 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:22:07 +0200 |
commit | e5fdc682cc63155884f341c980d10185e37c6a91 (patch) | |
tree | 6e372eaa6e8139e92f0cc229bf51a0357b17c284 | |
parent | 15d003a49567d5895aeb97d8de119c938316e8eb (diff) | |
download | ffmpeg-e5fdc682cc63155884f341c980d10185e37c6a91.tar.gz |
avcodec/fic: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/fic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fic.c b/libavcodec/fic.c index 457d74d7cd..d29f6d16fb 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -494,4 +494,5 @@ const AVCodec ff_fic_decoder = { .close = fic_decode_close, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SLICE_THREADS, .priv_class = &fic_decoder_class, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |