diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-26 14:24:00 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-04 15:46:46 +0100 |
commit | 868368aa38014add899dc467cac97011872296c7 (patch) | |
tree | 852b624bb5d2f52dc41b4cabec447792ddedd132 /libavcodec/cdtoons.c | |
parent | 6d4b9695153849ffd484a9d18519dff887d6c237 (diff) | |
download | ffmpeg-868368aa38014add899dc467cac97011872296c7.tar.gz |
avcodec/cdtoons: Mark decoder as init-threadsafe
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/cdtoons.c')
-rw-r--r-- | libavcodec/cdtoons.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cdtoons.c b/libavcodec/cdtoons.c index a8609815c1..3530f81452 100644 --- a/libavcodec/cdtoons.c +++ b/libavcodec/cdtoons.c @@ -453,4 +453,5 @@ AVCodec ff_cdtoons_decoder = { .decode = cdtoons_decode_frame, .capabilities = AV_CODEC_CAP_DR1, .flush = cdtoons_flush, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |