diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 19:34:21 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:56:55 +0200 |
commit | c437afa3d3a0e0012c81dea9a7f8ec700ea7445a (patch) | |
tree | 304e31da2dfbd32d46fe6e2a3e7156f60af85d68 /libavcodec | |
parent | 19b8a405d63a3d148a117909dda1ca0898993aca (diff) | |
download | ffmpeg-c437afa3d3a0e0012c81dea9a7f8ec700ea7445a.tar.gz |
avcodec/hcom: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/hcom.c | 2 |
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, }; |