diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-15 09:53:00 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-24 11:35:02 +0100 |
commit | a6423412c17e22ebec2823c83b991b0f8b0d30c9 (patch) | |
tree | 93a1333b214c0efcfa7924e12800ace4f264af24 | |
parent | 68429b9465b53bbb64bf8f35ea601f7ec2ead407 (diff) | |
download | ffmpeg-a6423412c17e22ebec2823c83b991b0f8b0d30c9.tar.gz |
avcodec/tscc2: Mark tscc2 decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/tscc2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tscc2.c b/libavcodec/tscc2.c index 9fa28fe9fc..630e17522c 100644 --- a/libavcodec/tscc2.c +++ b/libavcodec/tscc2.c @@ -370,5 +370,5 @@ AVCodec ff_tscc2_decoder = { .close = tscc2_decode_end, .decode = tscc2_decode_frame, .capabilities = AV_CODEC_CAP_DR1, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_INIT_THREADSAFE, }; |