[FFmpeg-cvslog] r13423 - trunk/libavformat/ffmdec.c
bcoudurier
subversion
Mon May 26 06:34:29 CEST 2008
Author: bcoudurier
Date: Mon May 26 06:34:29 2008
New Revision: 13423
Log:
use dprintf
Modified:
trunk/libavformat/ffmdec.c
Modified: trunk/libavformat/ffmdec.c
==============================================================================
--- trunk/libavformat/ffmdec.c (original)
+++ trunk/libavformat/ffmdec.c Mon May 26 06:34:29 2008
@@ -364,10 +364,8 @@ static int ffm_read_packet(AVFormatConte
if (!ffm_is_avail_data(s, FRAME_HEADER_SIZE)) {
return AVERROR(EAGAIN);
}
-#if 0
- printf("pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
+ 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);
-#endif
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