From 1d7a68d75cf7758f53becaa93fe62618dc6df756 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 17 Jul 2014 22:03:12 +0200 Subject: demux: fix debug log output It printed the PTS instead of the DTS. --- demux/demux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'demux') diff --git a/demux/demux.c b/demux/demux.c index 599894ed82..909038d783 100644 --- a/demux/demux.c +++ b/demux/demux.c @@ -297,7 +297,7 @@ int demux_add_packet(struct sh_stream *stream, demux_packet_t *dp) MP_DBG(in, "append packet to %s: size=%d pts=%f dts=%f pos=%"PRIi64" " "[num=%zd size=%zd]\n", stream_type_name(stream->type), - dp->len, dp->pts, dp->pts, dp->pos, ds->packs, ds->bytes); + dp->len, dp->pts, dp->dts, dp->pos, ds->packs, ds->bytes); if (ds->in->wakeup_cb) ds->in->wakeup_cb(ds->in->wakeup_cb_ctx); -- cgit v1.2.3