diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 18:26:31 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:55:08 +0200 |
commit | d537933e73887aa44dd13d9b780b7095716909c5 (patch) | |
tree | ea4d51f9ddc80f7db92f342a4a0c526bebc192ac /libavcodec/kgv1dec.c | |
parent | 2648df16c6549b5c9c83d312a9011f32afe75353 (diff) | |
download | ffmpeg-d537933e73887aa44dd13d9b780b7095716909c5.tar.gz |
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.c | 1 |
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, }; |