summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-06-02 20:40:09 +0200
committerDiego Biurrun <diego@biurrun.de>2011-06-02 23:11:58 +0200
commitb751f611065f1fe1d7216971c4b100c928a3b0d5 (patch)
tree55849482bfe65164d59ff9f0af51dedb3cf17f3f /libavformat/mpeg.c
parent551dfdde70f912d0278730b28d480e32a49b1b5e (diff)
Remove stray extra arguments from av_dlog() invocations.
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r--libavformat/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index 0b663ab512..98506612cd 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -569,7 +569,7 @@ static int mpegps_read_packet(AVFormatContext *s,
pkt->dts = dts;
pkt->pos = dummy_pos;
pkt->stream_index = st->index;
- av_dlog(s, AV_LOG_DEBUG, "%d: pts=%0.3f dts=%0.3f size=%d\n",
+ av_dlog(s, "%d: pts=%0.3f dts=%0.3f size=%d\n",
pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0,
pkt->size);