Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-05 22:04:59 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-10 23:12:01 +0300
commit4848a7abff37c868aa5a701c56e2a6b9588720d5 (patch)
tree13d0d7181619287cd7199543afc26dedc48a6099 /libavcodec/rawdec.c
parent9e1f7e20861505c174274d76765380c23d3d3c15 (diff)
avcodec/rawdec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r--libavcodec/rawdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index 96abf6a48c..b22e36e984 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -492,4 +492,5 @@ const AVCodec ff_rawvideo_decoder = {
.decode = raw_decode,
.priv_class = &rawdec_class,
.capabilities = AV_CODEC_CAP_PARAM_CHANGE,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};