From 29aa39e99c71e2c7ae98883e72620e590e6ec965 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sun, 24 Mar 2002 22:07:03 +0000 Subject: 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 --- gst/avi/audiocodecs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/avi/audiocodecs.c') 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); } -- cgit