mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-27 18:02:11 +00:00
mpeg4_unpack_bframes: Merge close and flush
They are identical now. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6090ac1d04
commit
fee1bffbc2
@ -145,13 +145,7 @@ static int mpeg4_unpack_bframes_init(AVBSFContext *ctx)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void mpeg4_unpack_bframes_flush(AVBSFContext *bsfc)
|
||||
{
|
||||
UnpackBFramesBSFContext *ctx = bsfc->priv_data;
|
||||
av_buffer_unref(&ctx->b_frame_ref);
|
||||
}
|
||||
|
||||
static void mpeg4_unpack_bframes_close(AVBSFContext *bsfc)
|
||||
static void mpeg4_unpack_bframes_close_flush(AVBSFContext *bsfc)
|
||||
{
|
||||
UnpackBFramesBSFContext *ctx = bsfc->priv_data;
|
||||
av_buffer_unref(&ctx->b_frame_ref);
|
||||
@ -166,7 +160,7 @@ const AVBitStreamFilter ff_mpeg4_unpack_bframes_bsf = {
|
||||
.priv_data_size = sizeof(UnpackBFramesBSFContext),
|
||||
.init = mpeg4_unpack_bframes_init,
|
||||
.filter = mpeg4_unpack_bframes_filter,
|
||||
.flush = mpeg4_unpack_bframes_flush,
|
||||
.close = mpeg4_unpack_bframes_close,
|
||||
.flush = mpeg4_unpack_bframes_close_flush,
|
||||
.close = mpeg4_unpack_bframes_close_flush,
|
||||
.codec_ids = codec_ids,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user