diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-07 06:13:29 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-12 06:00:14 +0200 |
commit | cb59c8cec49a74490d927ba4f4d2fcc81bde22bd (patch) | |
tree | c31a044ef4dad07ea0a754547863922137072ebf | |
parent | 4082520385f1cfcda6d5655471e8f411bbff837f (diff) | |
download | ffmpeg-cb59c8cec49a74490d927ba4f4d2fcc81bde22bd.tar.gz |
avcodec/nuv: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/nuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nuv.c b/libavcodec/nuv.c index 3ba12fd8e6..089ce68338 100644 --- a/libavcodec/nuv.c +++ b/libavcodec/nuv.c @@ -372,5 +372,5 @@ const AVCodec ff_nuv_decoder = { .close = decode_end, .decode = 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, }; |