summaryrefslogtreecommitdiff
path: root/ext/ffmpeg/gstffmpegenc.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-03-24 22:06:46 +0000
committerAndy Wingo <wingo@pobox.com>2002-03-24 22:06:46 +0000
commit762502fd528952717a36d3807e1ec6b52712663f (patch)
tree5d372f24a866cc2d559748c0a04e893b27200ef6 /ext/ffmpeg/gstffmpegenc.c
parentf2b9ef90a26b7a107d839f08b7b7091250506e17 (diff)
downloadgst-libav-762502fd528952717a36d3807e1ec6b52712663f.tar.gz
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 'ext/ffmpeg/gstffmpegenc.c')
-rw-r--r--ext/ffmpeg/gstffmpegenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ffmpeg/gstffmpegenc.c b/ext/ffmpeg/gstffmpegenc.c
index 4b72911..7286c6a 100644
--- a/ext/ffmpeg/gstffmpegenc.c
+++ b/ext/ffmpeg/gstffmpegenc.c
@@ -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)) {