summaryrefslogtreecommitdiffstats
path: root/libavformat/flvdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-23 02:21:27 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-04-23 03:55:41 +0200
commitb9017fdd426d91a88d63cb51da5e03cb7704b85d (patch)
tree87307f70ed56ad5c1205b9f85c47792c7ab9dc03 /libavformat/flvdec.c
parente79b15f5f1aeddcd0aeac7f34642752893f06705 (diff)
downloadffmpeg-streaming-b9017fdd426d91a88d63cb51da5e03cb7704b85d.zip
ffmpeg-streaming-b9017fdd426d91a88d63cb51da5e03cb7704b85d.tar.gz
avformat/flvdec: also include file position in debug output
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/flvdec.c')
-rw-r--r--libavformat/flvdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index f8c08bc..759979f 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -772,7 +772,7 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
size = avio_rb24(s->pb);
dts = avio_rb24(s->pb);
dts |= avio_r8(s->pb) << 24;
- av_dlog(s, "type:%d, size:%d, dts:%"PRId64"\n", type, size, dts);
+ av_dlog(s, "type:%d, size:%d, dts:%"PRId64" pos:%"PRId64"\n", type, size, dts, avio_tell(s->pb));
if (url_feof(s->pb))
return AVERROR_EOF;
avio_skip(s->pb, 3); /* stream id, always 0 */
OpenPOWER on IntegriCloud