diff options
author | James Almer <jamrial@gmail.com> | 2018-07-27 13:21:16 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-08-17 14:06:21 -0300 |
commit | d6321851ba3561bd16d847e4f6a8014ff983b36c (patch) | |
tree | 10e41cffc0c0dd17fb02660b28348e57a500a49f | |
parent | e1e1e8dbb204085443d95a05f91a5c33574792ce (diff) | |
download | ffmpeg-d6321851ba3561bd16d847e4f6a8014ff983b36c.tar.gz |
h264_mp4toannexb_bsf: implement a AVBSFContext.flush() callback
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/h264_mp4toannexb_bsf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/h264_mp4toannexb_bsf.c b/libavcodec/h264_mp4toannexb_bsf.c index c65aaeb98a..c45ecd8ce7 100644 --- a/libavcodec/h264_mp4toannexb_bsf.c +++ b/libavcodec/h264_mp4toannexb_bsf.c @@ -232,6 +232,13 @@ fail: return ret; } +static void h264_mp4toannexb_flush(AVBSFContext *ctx) +{ + H264BSFContext *s = ctx->priv_data; + + s->first_idr = s->extradata_parsed; +} + static const enum AVCodecID codec_ids[] = { AV_CODEC_ID_H264, AV_CODEC_ID_NONE, }; @@ -241,5 +248,6 @@ const AVBitStreamFilter ff_h264_mp4toannexb_bsf = { .priv_data_size = sizeof(H264BSFContext), .init = h264_mp4toannexb_init, .filter = h264_mp4toannexb_filter, + .flush = h264_mp4toannexb_flush, .codec_ids = codec_ids, }; |