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@gmail.com>2020-11-30 20:54:09 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 05:01:49 +0300
commit58ca07320bed139f81ece73dbbf8718e316d392a (patch)
tree3ab9a577bb531dba0a8319a33388f26f2c8eec65 /libavcodec/adxdec.c
parent4051599cea72b81138fadd38dbd14e5e41b940c4 (diff)
avcodec/adxdec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/adxdec.c')
-rw-r--r--libavcodec/adxdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/adxdec.c b/libavcodec/adxdec.c
index bff15d826c..20256a092e 100644
--- a/libavcodec/adxdec.c
+++ b/libavcodec/adxdec.c
@@ -203,4 +203,5 @@ const AVCodec ff_adpcm_adx_decoder = {
AV_CODEC_CAP_DR1,
.sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P,
AV_SAMPLE_FMT_NONE },
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};