filter newlines out of GST_DEBUG statements to reflect new core behavior fixes to...
authorAndy Wingo <wingo@pobox.com>
Sun, 24 Mar 2002 22:06:46 +0000 (22:06 +0000)
committerAndy Wingo <wingo@pobox.com>
Sun, 24 Mar 2002 22:06:46 +0000 (22:06 +0000)
Original commit message from CVS:
* filter newlines out of GST_DEBUG statements to reflect new core behavior
* fixes to adder's caps, again

common
ext/ffmpeg/gstffmpegdec.c
ext/ffmpeg/gstffmpegenc.c

diff --git a/common b/common
index de68be0..38267ab 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit de68be0c16181a66f42fad60319e273097f60245
+Subproject commit 38267abf56a3428093cea71429dca6a24a927547
index 519dc64..564564b 100644 (file)
@@ -180,7 +180,7 @@ gst_ffmpegdec_chain_audio (GstPad *pad, GstBuffer *inbuf)
   data = GST_BUFFER_DATA (inbuf);
   size = GST_BUFFER_SIZE (inbuf);
 
-  GST_DEBUG (0, "got buffer %p %d\n", data, size);
+  GST_DEBUG (0, "got buffer %p %d", data, size);
 
   gst_buffer_unref (inbuf);
 }
index 4b72911..7286c6a 100644 (file)
@@ -274,7 +274,7 @@ gst_ffmpegenc_chain_audio (GstPad *pad, GstBuffer *inbuf)
   data = GST_BUFFER_DATA (inbuf);
   size = GST_BUFFER_SIZE (inbuf);
 
-  GST_DEBUG (0, "got buffer %p %d\n", data, size);
+  GST_DEBUG (0, "got buffer %p %d", data, size);
 
   if (ffmpegenc->buffer_pos && (ffmpegenc->buffer_pos + size >= frame_size)) {