From 3a3965e5cfe138400a709ab7936659520209fc63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Thu, 25 Feb 2021 11:58:57 -0500 Subject: [PATCH] webrtc ice: Only ever request one component, it's always rtcpmux Part-of: --- ext/webrtc/gstwebrtcice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/webrtc/gstwebrtcice.c b/ext/webrtc/gstwebrtcice.c index c782f7d6f7..8f30508352 100644 --- a/ext/webrtc/gstwebrtcice.c +++ b/ext/webrtc/gstwebrtcice.c @@ -237,7 +237,7 @@ _create_nice_stream_item (GstWebRTCICE * ice, guint session_id) struct NiceStreamItem item; item.session_id = session_id; - item.nice_stream_id = nice_agent_add_stream (ice->priv->nice_agent, 2); + item.nice_stream_id = nice_agent_add_stream (ice->priv->nice_agent, 1); item.stream = gst_webrtc_ice_stream_new (ice, item.nice_stream_id); g_array_append_val (ice->priv->nice_stream_map, item);