summaryrefslogtreecommitdiff
path: root/libavcodec/hcom.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-29 19:34:21 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 02:56:55 +0200
commitc437afa3d3a0e0012c81dea9a7f8ec700ea7445a (patch)
tree304e31da2dfbd32d46fe6e2a3e7156f60af85d68 /libavcodec/hcom.c
parent19b8a405d63a3d148a117909dda1ca0898993aca (diff)
avcodec/hcom: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/hcom.c')
-rw-r--r--libavcodec/hcom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hcom.c b/libavcodec/hcom.c
index 1c49988b3a..3030e37d46 100644
--- a/libavcodec/hcom.c
+++ b/libavcodec/hcom.c
@@ -144,5 +144,5 @@ const AVCodec ff_hcom_decoder = {
.close = hcom_close,
.decode = hcom_decode,
.capabilities = AV_CODEC_CAP_DR1,
- .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};