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:26:31 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 04:55:08 +0300
commitd537933e73887aa44dd13d9b780b7095716909c5 (patch)
treeea4d51f9ddc80f7db92f342a4a0c526bebc192ac /libavcodec/kgv1dec.c
parent2648df16c6549b5c9c83d312a9011f32afe75353 (diff)
avcodec/kvg1dec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/kgv1dec.c')
-rw-r--r--libavcodec/kgv1dec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/kgv1dec.c b/libavcodec/kgv1dec.c
index 427f57f416..f865771b72 100644
--- a/libavcodec/kgv1dec.c
+++ b/libavcodec/kgv1dec.c
@@ -187,4 +187,5 @@ const AVCodec ff_kgv1_decoder = {
.decode = decode_frame,
.flush = decode_flush,
.capabilities = AV_CODEC_CAP_DR1,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};