diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-27 13:37:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 00:01:53 +0100 |
commit | a3d61e73217c135d24cebae636289c04558c0da0 (patch) | |
tree | 1f6169df4846963b7390d38eaecc6687131d4813 | |
parent | da860802adcc2ff123f157d483f408b1faf19b1d (diff) | |
download | ffmpeg-a3d61e73217c135d24cebae636289c04558c0da0.tar.gz |
avcodec/cdxl: Mark decoder as init-threadsafe
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/cdxl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cdxl.c b/libavcodec/cdxl.c index 7c82967df0..96ae14c418 100644 --- a/libavcodec/cdxl.c +++ b/libavcodec/cdxl.c @@ -335,4 +335,5 @@ AVCodec ff_cdxl_decoder = { .close = cdxl_decode_end, .decode = cdxl_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |