[FFmpeg-cvslog] r18099 - trunk/libavformat/ffmdec.c
bcoudurier
subversion
Sat Mar 21 08:36:25 CET 2009
Author: bcoudurier
Date: Sat Mar 21 08:36:25 2009
New Revision: 18099
Log:
fix compilation when DEBUG_SEEK is defined
Modified:
trunk/libavformat/ffmdec.c
Modified: trunk/libavformat/ffmdec.c
==============================================================================
--- trunk/libavformat/ffmdec.c Sat Mar 21 08:35:52 2009 (r18098)
+++ trunk/libavformat/ffmdec.c Sat Mar 21 08:36:25 2009 (r18099)
@@ -190,7 +190,7 @@ static int64_t get_dts(AVFormatContext *
url_fskip(pb, 4);
dts = get_be64(pb);
#ifdef DEBUG_SEEK
- av_log(s, AV_LOG_DEBUG, "pts=%0.6f\n", pts / 1000000.0);
+ av_log(s, AV_LOG_DEBUG, "dts=%0.6f\n", dts / 1000000.0);
#endif
return dts;
}
More information about the ffmpeg-cvslog
mailing list