rtsp-stream: avoid duplicating the first multicast client

In dcb4533fed , we made it so
clients were dynamically added and removed to the multicast
udp sinks, as such we should no longer add a first client in
set_multicast_socket_for_udpsink

https://bugzilla.gnome.org/show_bug.cgi?id=793441
This commit is contained in:
Mathieu Duponchelle 2018-07-31 21:17:41 +02:00 committed by Sebastian Dröge
parent d06f3af0be
commit c414158022

View file

@ -1157,8 +1157,6 @@ set_multicast_socket_for_udpsink (GstElement * udpsink, GSocket * socket,
GST_INFO ("setting ttl-mc %d", mcast_ttl);
g_object_set (G_OBJECT (udpsink), "ttl-mc", mcast_ttl, NULL);
}
g_signal_emit_by_name (udpsink, "add", addr_str, port, NULL);
}