From 335d279a96bc91fda43ee3e1028ee3c327e542ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?G=C3=B6ran=20J=C3=B6nsson?= Date: Mon, 21 Nov 2016 13:05:50 +0100 Subject: [PATCH] rtsp-stream: Set close-socket FALSE on UDP src:es 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/rtsp-server/rtsp-stream.c b/gst/rtsp-server/rtsp-stream.c index 9fd3e00..f5b5cf2 100644 --- a/gst/rtsp-server/rtsp-stream.c +++ b/gst/rtsp-server/rtsp-stream.c @@ -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; -- 2.7.4