From fd6296e412ed07829a544bca55d987fb32809b2d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 13 Sep 2015 13:52:01 +0200 Subject: [PATCH] avformat/flvdec: Print last packet size at trace level Signed-off-by: Michael Niedermayer --- libavformat/flvdec.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index 519c8d9406..148c5be4a3 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -801,15 +801,16 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) int av_uninit(channels); int av_uninit(sample_rate); AVStream *st = NULL; + int last = -1; /* pkt size is repeated at end. skip it */ - for (;; avio_skip(s->pb, 4)) { + for (;; last = avio_rb32(s->pb)) { pos = avio_tell(s->pb); type = (avio_r8(s->pb) & 0x1F); size = avio_rb24(s->pb); dts = avio_rb24(s->pb); dts |= avio_r8(s->pb) << 24; - av_log(s, AV_LOG_TRACE, "type:%d, size:%d, dts:%"PRId64" pos:%"PRId64"\n", type, size, dts, avio_tell(s->pb)); + av_log(s, AV_LOG_TRACE, "type:%d, size:%d, last:%d, dts:%"PRId64" pos:%"PRId64"\n", type, size, last, dts, avio_tell(s->pb)); if (avio_feof(s->pb)) return AVERROR_EOF; avio_skip(s->pb, 3); /* stream id, always 0 */