mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 16:22:37 +00:00
Merge commit 'bb428e00ac158244d6691bf135be404e85b66a8b'
* commit 'bb428e00ac158244d6691bf135be404e85b66a8b': hqx: Mark codec as init-thread-safe and init-cleanup Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
8d5088a168
@ -521,13 +521,10 @@ static av_cold int hqx_decode_close(AVCodecContext *avctx)
|
|||||||
static av_cold int hqx_decode_init(AVCodecContext *avctx)
|
static av_cold int hqx_decode_init(AVCodecContext *avctx)
|
||||||
{
|
{
|
||||||
HQXContext *ctx = avctx->priv_data;
|
HQXContext *ctx = avctx->priv_data;
|
||||||
int ret = ff_hqx_init_vlcs(ctx);
|
|
||||||
if (ret < 0)
|
|
||||||
hqx_decode_close(avctx);
|
|
||||||
|
|
||||||
ff_hqxdsp_init(&ctx->hqxdsp);
|
ff_hqxdsp_init(&ctx->hqxdsp);
|
||||||
|
|
||||||
return ret;
|
return ff_hqx_init_vlcs(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
AVCodec ff_hqx_decoder = {
|
AVCodec ff_hqx_decoder = {
|
||||||
@ -540,4 +537,6 @@ AVCodec ff_hqx_decoder = {
|
|||||||
.decode = hqx_decode_frame,
|
.decode = hqx_decode_frame,
|
||||||
.close = hqx_decode_close,
|
.close = hqx_decode_close,
|
||||||
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS,
|
.capabilities = CODEC_CAP_DR1 | CODEC_CAP_SLICE_THREADS,
|
||||||
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
|
||||||
|
FF_CODEC_CAP_INIT_CLEANUP,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user