mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
Making some things work and breaking others
Original commit message from CVS: Making some things work and breaking others
This commit is contained in:
parent
f795ae930d
commit
7f88e88b46
1 changed files with 10 additions and 3 deletions
|
@ -258,7 +258,8 @@ static void
|
||||||
gst_udpsink_chain (GstPad *pad, GstBuffer *buf)
|
gst_udpsink_chain (GstPad *pad, GstBuffer *buf)
|
||||||
{
|
{
|
||||||
GstUDPSink *udpsink;
|
GstUDPSink *udpsink;
|
||||||
guint tolen, i;
|
guint tolen;
|
||||||
|
/*guint tolen, i;*/
|
||||||
|
|
||||||
g_return_if_fail (pad != NULL);
|
g_return_if_fail (pad != NULL);
|
||||||
g_return_if_fail (GST_IS_PAD (pad));
|
g_return_if_fail (GST_IS_PAD (pad));
|
||||||
|
@ -276,7 +277,13 @@ gst_udpsink_chain (GstPad *pad, GstBuffer *buf)
|
||||||
|
|
||||||
tolen = sizeof(udpsink->theiraddr);
|
tolen = sizeof(udpsink->theiraddr);
|
||||||
|
|
||||||
for (i = 0; i < GST_BUFFER_SIZE (buf); i += udpsink->mtu) {
|
if (sendto (udpsink->sock, GST_BUFFER_DATA (buf),
|
||||||
|
GST_BUFFER_SIZE (buf), 0, (struct sockaddr *) &udpsink->theiraddr,
|
||||||
|
tolen) == -1) {
|
||||||
|
perror("sending");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*for (i = 0; i < GST_BUFFER_SIZE (buf); i += udpsink->mtu) {
|
||||||
if (GST_BUFFER_SIZE (buf) - i > udpsink->mtu) {
|
if (GST_BUFFER_SIZE (buf) - i > udpsink->mtu) {
|
||||||
if (sendto (udpsink->sock, GST_BUFFER_DATA (buf) + i,
|
if (sendto (udpsink->sock, GST_BUFFER_DATA (buf) + i,
|
||||||
udpsink->mtu, 0, (struct sockaddr *) &udpsink->theiraddr,
|
udpsink->mtu, 0, (struct sockaddr *) &udpsink->theiraddr,
|
||||||
|
@ -291,7 +298,7 @@ gst_udpsink_chain (GstPad *pad, GstBuffer *buf)
|
||||||
perror("sending");
|
perror("sending");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
|
|
||||||
gst_buffer_unref(buf);
|
gst_buffer_unref(buf);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue