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 19:22:06 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 04:50:49 +0300
commitf8129134516ebce4fcb3ac1dc0f92a495bc8adb0 (patch)
tree66c2992f5e5efcd678ecc3f5fdc3caf13ce6de4f /libavcodec/arbc.c
parentd0f90e23b4b2ff4ba8880d408951da7266badee9 (diff)
avcodec/arbc: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/arbc.c')
-rw-r--r--libavcodec/arbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/arbc.c b/libavcodec/arbc.c
index c4fc30e047..0f83a68758 100644
--- a/libavcodec/arbc.c
+++ b/libavcodec/arbc.c
@@ -223,5 +223,5 @@ const AVCodec ff_arbc_decoder = {
.flush = decode_flush,
.close = decode_close,
.capabilities = AV_CODEC_CAP_DR1,
- .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};