diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 19:36:19 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:57:55 +0200 |
commit | b3df59a5ea87b736ec38020a37ae4c3ebfe61a90 (patch) | |
tree | 5b0cb0447e27bab64cb009ccdc639efab86e587f | |
parent | c437afa3d3a0e0012c81dea9a7f8ec700ea7445a (diff) | |
download | ffmpeg-b3df59a5ea87b736ec38020a37ae4c3ebfe61a90.tar.gz |
avcodec/hnm4video: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/hnm4video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hnm4video.c b/libavcodec/hnm4video.c index 0d3fa7d1e8..dd7504c514 100644 --- a/libavcodec/hnm4video.c +++ b/libavcodec/hnm4video.c @@ -507,5 +507,5 @@ const AVCodec ff_hnm4_video_decoder = { .close = hnm_decode_end, .decode = hnm_decode_frame, .capabilities = AV_CODEC_CAP_DR1, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, }; |