summaryrefslogtreecommitdiff
path: root/libavcodec/msvideo1enc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-11-29 16:55:32 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-05-02 02:47:10 +0200
commita3ccfed6189033b7db63c5c329e7d195d55f8dc5 (patch)
tree96deccae916f87e9fa587ccc65cd2882b4011cb4 /libavcodec/msvideo1enc.c
parentecaf3c2400845a20c98ef211a784263f284c4b76 (diff)
avcodec/msvideo1enc: Mark encoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/msvideo1enc.c')
-rw-r--r--libavcodec/msvideo1enc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/msvideo1enc.c b/libavcodec/msvideo1enc.c
index 34c8d47c2b..3680c32b11 100644
--- a/libavcodec/msvideo1enc.c
+++ b/libavcodec/msvideo1enc.c
@@ -302,4 +302,5 @@ const AVCodec ff_msvideo1_encoder = {
.encode2 = encode_frame,
.close = encode_end,
.pix_fmts = (const enum AVPixelFormat[]){AV_PIX_FMT_RGB555, AV_PIX_FMT_NONE},
+ .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};