mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
f2b9ef90a2
commit
762502fd52
3 changed files with 3 additions and 3 deletions
2
common
2
common
|
@ -1 +1 @@
|
||||||
Subproject commit de68be0c16181a66f42fad60319e273097f60245
|
Subproject commit 38267abf56a3428093cea71429dca6a24a927547
|
|
@ -180,7 +180,7 @@ gst_ffmpegdec_chain_audio (GstPad *pad, GstBuffer *inbuf)
|
||||||
data = GST_BUFFER_DATA (inbuf);
|
data = GST_BUFFER_DATA (inbuf);
|
||||||
size = GST_BUFFER_SIZE (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);
|
gst_buffer_unref (inbuf);
|
||||||
}
|
}
|
||||||
|
|
|
@ -274,7 +274,7 @@ gst_ffmpegenc_chain_audio (GstPad *pad, GstBuffer *inbuf)
|
||||||
data = GST_BUFFER_DATA (inbuf);
|
data = GST_BUFFER_DATA (inbuf);
|
||||||
size = GST_BUFFER_SIZE (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)) {
|
if (ffmpegenc->buffer_pos && (ffmpegenc->buffer_pos + size >= frame_size)) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue