diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-05 21:04:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-10 22:12:01 +0200 |
commit | 4848a7abff37c868aa5a701c56e2a6b9588720d5 (patch) | |
tree | 13d0d7181619287cd7199543afc26dedc48a6099 /libavcodec/rawdec.c | |
parent | 9e1f7e20861505c174274d76765380c23d3d3c15 (diff) | |
download | ffmpeg-4848a7abff37c868aa5a701c56e2a6b9588720d5.tar.gz |
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.c | 1 |
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, }; |