diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 16:55:32 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:47:10 +0200 |
commit | a3ccfed6189033b7db63c5c329e7d195d55f8dc5 (patch) | |
tree | 96deccae916f87e9fa587ccc65cd2882b4011cb4 | |
parent | ecaf3c2400845a20c98ef211a784263f284c4b76 (diff) | |
download | ffmpeg-a3ccfed6189033b7db63c5c329e7d195d55f8dc5.tar.gz |
avcodec/msvideo1enc: Mark encoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/msvideo1enc.c | 1 |
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, }; |