diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-06-07 13:18:12 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-06-10 19:12:14 +0200 |
commit | 919d7a345a7e9044c3cdc89cf06dc521a1b01c6c (patch) | |
tree | 2b98bfe3c2979b79479741da4dfdc9325c0dfbf1 /libavformat/mpeg.c | |
parent | aecc596a651b981256f91ee619aaf282e455d99e (diff) | |
download | ffmpeg-919d7a345a7e9044c3cdc89cf06dc521a1b01c6c.tar.gz |
Replace DEBUG_SEEK/DEBUG_SI + av_log combinations by av_dlog.
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r-- | libavformat/mpeg.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 5b4996e825..496b9d45f5 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -23,8 +23,6 @@ #include "internal.h" #include "mpeg.h" -//#define DEBUG_SEEK - #undef NDEBUG #include <assert.h> @@ -589,9 +587,7 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, for(;;) { len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts); if (len < 0) { -#ifdef DEBUG_SEEK - av_log(s, AV_LOG_DEBUG, "none (ret=%d)\n", len); -#endif + av_dlog(s, "none (ret=%d)\n", len); return AV_NOPTS_VALUE; } if (startcode == s->streams[stream_index]->id && @@ -600,10 +596,8 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, } avio_skip(s->pb, len); } -#ifdef DEBUG_SEEK - av_log(s, AV_LOG_DEBUG, "pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n", - pos, dts, dts / 90000.0); -#endif + av_dlog(s, "pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n", + pos, dts, dts / 90000.0); *ppos = pos; return dts; } |