summaryrefslogtreecommitdiffstats
path: root/gst/avi/gstaviaudiodecoder.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-24 22:07:03 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-24 22:07:03 +0000
commit29aa39e99c71e2c7ae98883e72620e590e6ec965 (patch)
treeb553181db23bf46ba9e27382b6fcf9c731cfa934 /gst/avi/gstaviaudiodecoder.c
parent9e745b472d465325f1e8fd05a5d6465cb120d004 (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/avi/gstaviaudiodecoder.c')
-rw-r--r--gst/avi/gstaviaudiodecoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/avi/gstaviaudiodecoder.c b/gst/avi/gstaviaudiodecoder.c
index 7e9e0837..38a6b853 100644
--- a/gst/avi/gstaviaudiodecoder.c
+++ b/gst/avi/gstaviaudiodecoder.c
@@ -143,7 +143,7 @@ gst_avi_audio_decoder_chain (GstPad *pad,
g_return_if_fail (GST_BUFFER_DATA(buf) != NULL);
avi_audio_decoder = GST_AVI_AUDIO_DECODER (gst_pad_get_parent (pad));
- GST_DEBUG (0,"gst_avi_audio_decoder_chain: got buffer in %u\n", GST_BUFFER_OFFSET (buf));
+ GST_DEBUG (0,"gst_avi_audio_decoder_chain: got buffer in %u", GST_BUFFER_OFFSET (buf));
g_print ("gst_avi_audio_decoder_chain: got buffer in %u\n", GST_BUFFER_OFFSET (buf));
data = (guchar *)GST_BUFFER_DATA (buf);
size = GST_BUFFER_SIZE (buf);