diff options
Diffstat (limited to 'gst/udp')
-rw-r--r-- | gst/udp/gstdynudpsink.c | 4 | ||||
-rw-r--r-- | gst/udp/gstmultiudpsink.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gst/udp/gstdynudpsink.c b/gst/udp/gstdynudpsink.c index e7be3b22..26680168 100644 --- a/gst/udp/gstdynudpsink.c +++ b/gst/udp/gstdynudpsink.c @@ -187,6 +187,8 @@ gst_dynudpsink_render (GstBaseSink * bsink, GstBuffer * buffer) guint8 *data; GstNetBuffer *netbuf; struct sockaddr_in theiraddr; + guint16 destport; + guint32 destaddr; memset (&theiraddr, 0, sizeof (theiraddr)); @@ -203,8 +205,6 @@ gst_dynudpsink_render (GstBaseSink * bsink, GstBuffer * buffer) data = GST_BUFFER_DATA (netbuf); GST_DEBUG ("about to send %d bytes", size); - guint16 destport; - guint32 destaddr; // let's get the address from the netbuffer gst_netaddress_get_ip4_address (&netbuf->to, &destaddr, &destport); diff --git a/gst/udp/gstmultiudpsink.c b/gst/udp/gstmultiudpsink.c index ed9be9e1..bcc81128 100644 --- a/gst/udp/gstmultiudpsink.c +++ b/gst/udp/gstmultiudpsink.c @@ -462,10 +462,10 @@ gst_multiudpsink_get_stats (GstMultiUDPSink * sink, const gchar * host, find = g_list_find_custom (sink->clients, &udpclient, (GCompareFunc) client_compare); if (find) { - client = (GstUDPClient *) find->data; - GValue value = { 0 }; + client = (GstUDPClient *) find->data; + /* Result is a value array of (bytes_sent, packets_sent, * connect_time, disconnect_time), all as uint64 */ result = g_value_array_new (4); |