Commit 286e58bb authored by James Almer's avatar James Almer

avcodec/arbc: clear decoder state when seeking

Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 483d0291
...@@ -181,6 +181,13 @@ static av_cold int decode_init(AVCodecContext *avctx) ...@@ -181,6 +181,13 @@ static av_cold int decode_init(AVCodecContext *avctx)
return 0; return 0;
} }
static void decode_flush(AVCodecContext *avctx)
{
ARBCContext *s = avctx->priv_data;
av_frame_unref(s->prev_frame);
}
static av_cold int decode_close(AVCodecContext *avctx) static av_cold int decode_close(AVCodecContext *avctx)
{ {
ARBCContext *s = avctx->priv_data; ARBCContext *s = avctx->priv_data;
...@@ -198,6 +205,7 @@ AVCodec ff_arbc_decoder = { ...@@ -198,6 +205,7 @@ AVCodec ff_arbc_decoder = {
.priv_data_size = sizeof(ARBCContext), .priv_data_size = sizeof(ARBCContext),
.init = decode_init, .init = decode_init,
.decode = decode_frame, .decode = decode_frame,
.flush = decode_flush,
.close = decode_close, .close = decode_close,
.capabilities = AV_CODEC_CAP_DR1, .capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP, .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
......
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