]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/arbc: clear decoder state when seeking
authorJames Almer <jamrial@gmail.com>
Mon, 28 Jan 2019 16:16:32 +0000 (13:16 -0300)
committerJames Almer <jamrial@gmail.com>
Mon, 28 Jan 2019 21:14:08 +0000 (18:14 -0300)
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
libavcodec/arbc.c

index 01a146f9349979dd4153e8b5da6824e35ebdf7f8..4558304f1203b2c6968326e7a4b7ad36e3f4bffd 100644 (file)
@@ -181,6 +181,13 @@ static av_cold int decode_init(AVCodecContext *avctx)
     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)
 {
     ARBCContext *s = avctx->priv_data;
@@ -198,6 +205,7 @@ AVCodec ff_arbc_decoder = {
     .priv_data_size = sizeof(ARBCContext),
     .init           = decode_init,
     .decode         = decode_frame,
+    .flush          = decode_flush,
     .close          = decode_close,
     .capabilities   = AV_CODEC_CAP_DR1,
     .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP,