rtsp-stream: Set close-socket FALSE on UDP src:es
authorGöran Jönsson <goranjn@axis.com>
Mon, 21 Nov 2016 12:05:50 +0000 (13:05 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Tue, 22 Nov 2016 11:59:30 +0000 (13:59 +0200)
With this RTSP server can use the sockets independent on the udpsrc
state.
When the udp src is finalized it will unref socket and when g_socket
is finalized the socket will be closed.

https://bugzilla.gnome.org/show_bug.cgi?id=765673

gst/rtsp-server/rtsp-stream.c

index 9fd3e00..f5b5cf2 100644 (file)
@@ -1176,6 +1176,9 @@ create_and_configure_udpsources (GstElement * udpsrc_out[2],
   g_object_set (G_OBJECT (udpsrc_out[0]), "loop", FALSE, NULL);
   g_object_set (G_OBJECT (udpsrc_out[1]), "loop", FALSE, NULL);
 
+  g_object_set (G_OBJECT (udpsrc_out[0]), "close-socket", FALSE, NULL);
+  g_object_set (G_OBJECT (udpsrc_out[1]), "close-socket", FALSE, NULL);
+
   ret = gst_element_set_state (udpsrc_out[0], GST_STATE_READY);
   if (ret == GST_STATE_CHANGE_FAILURE)
     goto error;