diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 13:57:36 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:36:53 +0200 |
commit | 96755c7332621a44ff2f0fcf17e88f97b95c0e4d (patch) | |
tree | 2a602034335c6d77c718e4a03eb26d3d0da5355c | |
parent | fc2522c9c54f3715656f7fc38c710bab62096ca3 (diff) | |
download | ffmpeg-96755c7332621a44ff2f0fcf17e88f97b95c0e4d.tar.gz |
avcodec/cscd: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/cscd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cscd.c b/libavcodec/cscd.c index af12246281..1b82626582 100644 --- a/libavcodec/cscd.c +++ b/libavcodec/cscd.c @@ -175,6 +175,6 @@ const AVCodec ff_cscd_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, }; |