diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 18:08:09 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:51:52 +0200 |
commit | abe61c349d7368c38dde37da1d6aee091129d461 (patch) | |
tree | 9f463dd7114810ad0b2d958117c870e564fffdbb | |
parent | 9ae6f5ae92def1e1206f28ba823d0e3b3c222096 (diff) | |
download | ffmpeg-abe61c349d7368c38dde37da1d6aee091129d461.tar.gz |
avcodec/iff: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/iff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/iff.c b/libavcodec/iff.c index b4d7b4b31c..b5f04e7e16 100644 --- a/libavcodec/iff.c +++ b/libavcodec/iff.c @@ -1911,7 +1911,7 @@ const AVCodec ff_iff_ilbm_decoder = { .init = decode_init, .close = decode_end, .decode = decode_frame, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, }; #endif |