Commit 93aa9056 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt Committed by Andreas Rheinhardt

avcodec/mvcdec: Mark decoders as init-threadsafe

Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent a3ccfed6
......@@ -262,6 +262,7 @@ const AVCodec ff_mvc1_decoder = {
.init = mvc_decode_init,
.decode = mvc_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};
#endif
......@@ -275,5 +276,6 @@ const AVCodec ff_mvc2_decoder = {
.init = mvc_decode_init,
.decode = mvc_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment