Commit eb1d1c76 authored by James Almer's avatar James Almer

vp9_superframe_split_bsf: implement a AVBSFContext.flush() callback

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent d6321851
......@@ -131,6 +131,12 @@ fail:
return ret;
}
static void vp9_superframe_split_flush(AVBSFContext *ctx)
{
VP9SFSplitContext *s = ctx->priv_data;
av_packet_free(&s->buffer_pkt);
}
static void vp9_superframe_split_uninit(AVBSFContext *ctx)
{
VP9SFSplitContext *s = ctx->priv_data;
......@@ -140,6 +146,7 @@ static void vp9_superframe_split_uninit(AVBSFContext *ctx)
const AVBitStreamFilter ff_vp9_superframe_split_bsf = {
.name = "vp9_superframe_split",
.priv_data_size = sizeof(VP9SFSplitContext),
.flush = vp9_superframe_split_flush,
.close = vp9_superframe_split_uninit,
.filter = vp9_superframe_split_filter,
.codec_ids = (const enum AVCodecID []){ AV_CODEC_ID_VP9, AV_CODEC_ID_NONE },
......
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