mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/flicvideo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
f95e1a7355
commit
072d2caf42
|
@ -1112,4 +1112,5 @@ const AVCodec ff_flic_decoder = {
|
||||||
.close = flic_decode_end,
|
.close = flic_decode_end,
|
||||||
.decode = flic_decode_frame,
|
.decode = flic_decode_frame,
|
||||||
.capabilities = AV_CODEC_CAP_DR1,
|
.capabilities = AV_CODEC_CAP_DR1,
|
||||||
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue