From fe2c1e2d02dccf9e39e6a519466ef948130b2226 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 25 Aug 2006 16:48:28 +0000 Subject: [PATCH] gst/tcp/gstmultifdsink.c: Fix spelling. Original commit message from CVS: * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render): Fix spelling. Remove accidently included debug line. --- ChangeLog | 6 ++++++ gst/tcp/gstmultifdsink.c | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 98caca413f..ea07e2d3dc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-08-25 Michael Smith + + * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render): + Fix spelling. + Remove accidently included debug line. + 2006-08-25 Wim Taymans * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_render): diff --git a/gst/tcp/gstmultifdsink.c b/gst/tcp/gstmultifdsink.c index 61582ee521..c5bcca3567 100644 --- a/gst/tcp/gstmultifdsink.c +++ b/gst/tcp/gstmultifdsink.c @@ -2223,7 +2223,7 @@ gst_multi_fd_sink_render (GstBaseSink * bsink, GstBuffer * buf) if (!bufcaps) { if (!gst_buffer_is_metadata_writable (buf)) { /* metadata is not writable, copy will be made and original buffer - * will be unreffed so we need to ref so that we don't loose the + * will be unreffed so we need to ref so that we don't lose the * buffer in the render method. */ gst_buffer_ref (buf); /* the new buffer is ours only, we keep it out of the scope of this @@ -2235,7 +2235,6 @@ gst_multi_fd_sink_render (GstBaseSink * bsink, GstBuffer * buf) gst_buffer_ref (buf); } /* buffer metadata is writable now, set the caps */ - GST_DEBUG_OBJECT (sink, "result is %p", buf); gst_buffer_set_caps (buf, padcaps); } else { gst_caps_unref (bufcaps);