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/avi/audiocodecs.c | |
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/avi/audiocodecs.c')
-rw-r--r-- | gst/avi/audiocodecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/avi/audiocodecs.c b/gst/avi/audiocodecs.c index 51b0a062..05c8862c 100644 --- a/gst/avi/audiocodecs.c +++ b/gst/avi/audiocodecs.c @@ -177,13 +177,13 @@ static GstPad *gst_avi_decoder_get_audio_srcpad_winloader(GstAviDecoder *avi_dec data->out = sinkpad; - GST_DEBUG (0,"gst_avi_decoder: pads created\n"); + GST_DEBUG (0,"gst_avi_decoder: pads created"); return sinkpad; } static void gst_avi_decoder_winloader_audio_chain(GstPad *pad, GstBuffer *buf) { - GST_DEBUG (0,"gst_avi_decoder: got buffer %08lx %p\n", *(gulong *)GST_BUFFER_DATA(buf), GST_BUFFER_DATA(buf)); + GST_DEBUG (0,"gst_avi_decoder: got buffer %08lx %p", *(gulong *)GST_BUFFER_DATA(buf), GST_BUFFER_DATA(buf)); gst_buffer_unref(buf); } |