diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 13:59:27 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2021-02-20 15:44:44 +0100 |
commit | 5a4f0d9b94e1f9b927a5468ac441ceb515e99fcd (patch) | |
tree | 68ada59fef4872ca9107f13395917d1845c89f0c /libavcodec | |
parent | 980b5c3bb5ffc94644d4e82f5bf98e5b83f932d7 (diff) | |
download | ffmpeg-5a4f0d9b94e1f9b927a5468ac441ceb515e99fcd.tar.gz |
avcodec/cpia: Mark decoder as init-threadsafe
Reviewed-by: Stephan Hilb <stephan@ecshi.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cpia.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/cpia.c b/libavcodec/cpia.c index bf09e1a5db..5f12a99a83 100644 --- a/libavcodec/cpia.c +++ b/libavcodec/cpia.c @@ -230,4 +230,5 @@ AVCodec ff_cpia_decoder = { .close = cpia_decode_end, .decode = cpia_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |