diff --git a/ChangeLog b/ChangeLog index de03ce68c6..b501c91ef9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-08-15 Ronald S. Bultje + + * ext/faad/gstfaad.c: (gst_faad_event): + * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header): + Fix debug. + 2005-08-15 Ronald S. Bultje * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak), diff --git a/common b/common index 856fbbfa88..fae12c8772 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 856fbbfa88621ab67df141ead8d4d3df32c5c176 +Subproject commit fae12c87727e1a701975d0e72078e844c25f499c diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index 096baeb652..886193cc29 100644 --- a/ext/faad/gstfaad.c +++ b/ext/faad/gstfaad.c @@ -633,8 +633,8 @@ gst_faad_event (GstPad * pad, GstEvent * event) gst_event_parse_newsegment (event, &rate, &fmt, &start, &end, &base); if (fmt == GST_FORMAT_TIME) { - GST_DEBUG ("Got NEWSEGMENT event in GST_FORMAT_TIME, passing on (" - GST_TIME_FORMAT " - " GST_TIME_FORMAT ")", GST_TIME_ARGS (start), + GST_DEBUG ("Got NEWSEGMENT event in GST_FORMAT_TIME, passing on (%" + GST_TIME_FORMAT " - %" GST_TIME_FORMAT ")", GST_TIME_ARGS (start), GST_TIME_ARGS (end)); } else if (fmt == GST_FORMAT_BYTES) { GstEvent *new_ev; @@ -659,8 +659,8 @@ gst_faad_event (GstPad * pad, GstEvent * event) base); gst_event_unref (event); event = new_ev; - GST_DEBUG ("Sending new NEWSEGMENT event, time " GST_TIME_FORMAT " - " - GST_TIME_FORMAT, GST_TIME_ARGS (new_start), + GST_DEBUG ("Sending new NEWSEGMENT event, time %" GST_TIME_FORMAT + " - %" GST_TIME_FORMAT, GST_TIME_ARGS (new_start), GST_TIME_ARGS (new_end)); } diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 0dee27cd1c..b419e24fd9 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -667,6 +667,8 @@ gst_qtdemux_loop_header (GstPad * pad) GST_CLOCK_TIME_NONE, 0); gint n; + GST_DEBUG ("Discont to %" GST_TIME_FORMAT, + GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf))); qtdemux->need_discont = FALSE; for (n = 0; n < qtdemux->n_streams; n++) { gst_event_ref (event);