diff options
author | Andy Wingo <wingo@pobox.com> | 2002-03-24 22:07:03 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-03-24 22:07:03 +0000 |
commit | 29aa39e99c71e2c7ae98883e72620e590e6ec965 (patch) | |
tree | b553181db23bf46ba9e27382b6fcf9c731cfa934 /gst/goom | |
parent | 9e745b472d465325f1e8fd05a5d6465cb120d004 (diff) |
filter newlines out of GST_DEBUG statements to reflect new core behavior fixes to adder's caps, again
Original commit message from CVS:
* filter newlines out of GST_DEBUG statements to reflect new core behavior
* fixes to adder's caps, again
Diffstat (limited to 'gst/goom')
-rw-r--r-- | gst/goom/gstgoom.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst/goom/gstgoom.c b/gst/goom/gstgoom.c index dc59feab..bdbd07fc 100644 --- a/gst/goom/gstgoom.c +++ b/gst/goom/gstgoom.c @@ -230,11 +230,11 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin) goom = GST_GOOM (gst_pad_get_parent (pad)); - GST_DEBUG (0, "GOOM: chainfunc called\n"); + GST_DEBUG (0, "GOOM: chainfunc called"); samples_in = GST_BUFFER_SIZE (bufin) / sizeof (gint16); - GST_DEBUG (0, "input buffer has %d samples\n", samples_in); + GST_DEBUG (0, "input buffer has %d samples", samples_in); if (GST_BUFFER_TIMESTAMP (bufin) < goom->next_time || samples_in < 1024) { gst_buffer_unref (bufin); @@ -252,7 +252,7 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin) goom_init (goom->width, goom->height); - GST_DEBUG (0, "making new pad\n"); + GST_DEBUG (0, "making new pad"); caps = GST_CAPS_NEW ( "goomsrc", @@ -287,7 +287,7 @@ gst_goom_chain (GstPad *pad, GstBuffer *bufin) gst_buffer_unref (bufin); - GST_DEBUG (0, "GOOM: exiting chainfunc\n"); + GST_DEBUG (0, "GOOM: exiting chainfunc"); } |