diff options
author | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-08-15 15:58:49 +0000 |
---|---|---|
committer | Ronald S. Bultje <rbultje@ronald.bitfreak.net> | 2005-08-15 15:58:49 +0000 |
commit | 638a8faf1386cab8fb66c068912f7500cd119e1f (patch) | |
tree | 2ab018a6d69d63dc4014c9728ff3cdbdf6342776 /ext | |
parent | b4b1210a9e84c877edccccf7a85776cae62e834e (diff) | |
download | gst-plugins-bad-638a8faf1386cab8fb66c068912f7500cd119e1f.tar.gz gst-plugins-bad-638a8faf1386cab8fb66c068912f7500cd119e1f.tar.bz2 gst-plugins-bad-638a8faf1386cab8fb66c068912f7500cd119e1f.zip |
Fix debug.
Original commit message from CVS:
* ext/faad/gstfaad.c: (gst_faad_event):
* gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header):
Fix debug.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/faad/gstfaad.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/faad/gstfaad.c b/ext/faad/gstfaad.c index 096baeb6..886193cc 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)); } |