mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/zerocodec: implement flushing
This commit is contained in:
parent
481ebb1c8b
commit
05e04e821d
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user