[FFmpeg-cvslog] avcodec/zerocodec: implement flushing
Paul B Mahol
git at videolan.org
Fri Apr 10 13:30:19 EEST 2020
ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Apr 9 10:45:55 2020 +0200| [05e04e821d2bc977764ca3456e96d8e9850f498c] | committer: Paul B Mahol
avcodec/zerocodec: implement flushing
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=05e04e821d2bc977764ca3456e96d8e9850f498c
---
libavcodec/zerocodec.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/libavcodec/zerocodec.c b/libavcodec/zerocodec.c
index e67eee4f7d..b0fab91004 100644
--- a/libavcodec/zerocodec.c
+++ b/libavcodec/zerocodec.c
@@ -139,6 +139,13 @@ static av_cold int zerocodec_decode_init(AVCodecContext *avctx)
return 0;
}
+static void zerocodec_decode_flush(AVCodecContext *avctx)
+{
+ ZeroCodecContext *zc = avctx->priv_data;
+
+ av_frame_unref(zc->previous_frame);
+}
+
AVCodec ff_zerocodec_decoder = {
.type = AVMEDIA_TYPE_VIDEO,
.name = "zerocodec",
@@ -147,6 +154,7 @@ AVCodec ff_zerocodec_decoder = {
.priv_data_size = sizeof(ZeroCodecContext),
.init = zerocodec_decode_init,
.decode = zerocodec_decode_frame,
+ .flush = zerocodec_decode_flush,
.close = zerocodec_decode_close,
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
More information about the ffmpeg-cvslog
mailing list