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
This commit is contained in:
Andy Wingo 2002-03-24 22:06:46 +00:00
parent f2b9ef90a2
commit 762502fd52
3 changed files with 3 additions and 3 deletions

2
common

@ -1 +1 @@
Subproject commit de68be0c16181a66f42fad60319e273097f60245
Subproject commit 38267abf56a3428093cea71429dca6a24a927547

View 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);
}

View 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)) {