mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
rtpmanagerbad: do not set iface on sink
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/994>
This commit is contained in:
parent
e7ef042400
commit
a774dfb18f
2 changed files with 1 additions and 2 deletions
|
@ -703,7 +703,6 @@ gst_rtp_src_start (GstRtpSrc * self)
|
|||
|
||||
/* set multicast-iface on the udpsrc and udpsink elements */
|
||||
g_object_set (self->rtcp_src, "multicast-iface", self->multi_iface, NULL);
|
||||
g_object_set (self->rtcp_sink, "multicast-iface", self->multi_iface, NULL);
|
||||
g_object_set (self->rtp_src, "multicast-iface", self->multi_iface, NULL);
|
||||
} else {
|
||||
/* In unicast, send RTCP to the detected sender address */
|
||||
|
|
|
@ -28,7 +28,7 @@ GST_START_TEST (test_uri_to_properties)
|
|||
|
||||
/* Sets properties to non-default values (make sure this stays in sync) */
|
||||
g_object_set (rtpsrc, "uri", "rtp://1.230.1.2:1234?"
|
||||
"latency=300" "&ttl=8" "&ttl-mc=9", NULL);
|
||||
"latency=300" "&ttl=8" "&ttl-mc=9" "&multicast-iface=dummy", NULL);
|
||||
|
||||
g_object_get (rtpsrc,
|
||||
"latency", &latency, "ttl-mc", &ttl_mc, "ttl", &ttl, NULL);
|
||||
|
|
Loading…
Reference in a new issue