summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-06-06 00:39:39 +0200
committerDiego Biurrun <diego@biurrun.de>2011-06-07 13:20:57 +0200
commitd7cf5639e727b454896e7d7d8da2abcd4b631eac (patch)
treea05f0746adefa8a7fd99a13968371698caf01b58 /libavformat/mpeg.c
parente01bb264e78385367b716a55df713ae1a6750310 (diff)
Replace some printf instances in debug code by av_log.
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r--libavformat/mpeg.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 98506612cd..86cee0c4b8 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -593,7 +593,7 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts);
if (len < 0) {
#ifdef DEBUG_SEEK
- printf("none (ret=%d)\n", len);
+ av_log(s, AV_LOG_DEBUG, "none (ret=%d)\n", len);
#endif
return AV_NOPTS_VALUE;
}
@@ -604,7 +604,8 @@ static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index,
avio_skip(s->pb, len);
}
#ifdef DEBUG_SEEK
- printf("pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n", pos, dts, dts / 90000.0);
+ av_log(s, AV_LOG_DEBUG, "pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n",
+ pos, dts, dts / 90000.0);
#endif
*ppos = pos;
return dts;