mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-09 14:14:39 +02:00
avcodec/alac: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
bff74c3aea
commit
d43f0f6136
@ -626,6 +626,6 @@ const AVCodec ff_alac_decoder = {
|
|||||||
.close = alac_decode_close,
|
.close = alac_decode_close,
|
||||||
.decode = alac_decode_frame,
|
.decode = alac_decode_frame,
|
||||||
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS | AV_CODEC_CAP_CHANNEL_CONF,
|
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS | AV_CODEC_CAP_CHANNEL_CONF,
|
||||||
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
|
||||||
.priv_class = &alac_class
|
.priv_class = &alac_class
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user