mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
gst/tcp/gstmultifdsink.c: Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
Original commit message from CVS: * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data), (gst_multifdsink_render): Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
This commit is contained in:
parent
726770239d
commit
eac77914d3
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-11-14 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
|
||||
(gst_multifdsink_render):
|
||||
Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
|
||||
|
||||
2005-11-14 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/playback/gstplaybin.c: (gen_audio_element):
|
||||
|
|
|
@ -770,6 +770,9 @@ gst_multifdsink_handle_client_read (GstMultiFdSink * sink,
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* Queue raw data, creating a new buffer. This takes ownership of the data by
|
||||
* setting it as GST_BUFFER_MALLOCDATA() on the created buffer
|
||||
*/
|
||||
static gboolean
|
||||
gst_multifdsink_client_queue_data (GstMultiFdSink * sink, GstTCPClient * client,
|
||||
gchar * data, gint len)
|
||||
|
@ -778,6 +781,7 @@ gst_multifdsink_client_queue_data (GstMultiFdSink * sink, GstTCPClient * client,
|
|||
|
||||
buf = gst_buffer_new ();
|
||||
GST_BUFFER_DATA (buf) = (guint8 *) data;
|
||||
GST_BUFFER_MALLOCDATA (buf) = (guint8 *) data;
|
||||
GST_BUFFER_SIZE (buf) = len;
|
||||
|
||||
GST_LOG_OBJECT (sink, "[fd %5d] queueing data of length %d",
|
||||
|
@ -1509,6 +1513,7 @@ gst_multifdsink_render (GstBaseSink * bsink, GstBuffer * buf)
|
|||
g_slist_free (sink->streamheader);
|
||||
sink->streamheader = NULL;
|
||||
}
|
||||
|
||||
/* if the incoming buffer is marked as IN CAPS, then we assume for now
|
||||
* it's a streamheader that needs to be sent to each new client, so we
|
||||
* put it on our internal list of streamheader buffers.
|
||||
|
|
Loading…
Reference in a new issue