[FFmpeg-cvslog] r13727 - trunk/libavformat/ffmdec.c
diego
subversion
Mon Jun 9 10:44:45 CEST 2008
Author: diego
Date: Mon Jun 9 10:44:45 2008
New Revision: 13727
Log:
Fix compilation with -DDEBUG, patch by Albert Astals Cid, aastals tv-wan es.
Modified:
trunk/libavformat/ffmdec.c
Modified: trunk/libavformat/ffmdec.c
==============================================================================
--- trunk/libavformat/ffmdec.c (original)
+++ trunk/libavformat/ffmdec.c Mon Jun 9 10:44:45 2008
@@ -364,7 +364,7 @@ static int ffm_read_packet(AVFormatConte
return AVERROR(EAGAIN);
}
dprintf(s, "pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
- url_ftell(s->pb), s->pb.pos, ffm->write_index, ffm->file_size);
+ url_ftell(s->pb), s->pb->pos, ffm->write_index, ffm->file_size);
if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) !=
FRAME_HEADER_SIZE)
return AVERROR(EAGAIN);
More information about the ffmpeg-cvslog
mailing list