diff options
author | Andreas Rheinhardt <[email protected]> | 2020-11-29 16:54:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <[email protected]> | 2021-05-02 02:46:50 +0200 |
commit | ecaf3c2400845a20c98ef211a784263f284c4b76 (patch) | |
tree | adbc8ddc32fa5932fce98a7cf5e29ec5e53a1776 | |
parent | bf40d3b94d95f410d85655cd2879a20464a7d345 (diff) |
avcodec/msvideo1: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <[email protected]>
-rw-r--r-- | libavcodec/msvideo1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/msvideo1.c b/libavcodec/msvideo1.c index 99965b04a2..182b3c38ad 100644 --- a/libavcodec/msvideo1.c +++ b/libavcodec/msvideo1.c @@ -351,4 +351,5 @@ const AVCodec ff_msvideo1_decoder = { .close = msvideo1_decode_end, .decode = msvideo1_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |