From ad027bd05dc134be46051dc9b87305db6454abc5 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Mon, 7 Jul 2025 12:38:53 +0100 Subject: [PATCH] webrtc-api: Set default bundle policy to max-bundle Otherwise the default is "balanced" and GstWebRTC-based browser engines don't support this very well. Max bundle is already un-conditionally enabled by default in webrtcsink. Part-of: --- net/webrtc/gstwebrtc-api/src/config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/webrtc/gstwebrtc-api/src/config.js b/net/webrtc/gstwebrtc-api/src/config.js index 5d8236380..49e943d07 100644 --- a/net/webrtc/gstwebrtc-api/src/config.js +++ b/net/webrtc/gstwebrtc-api/src/config.js @@ -47,7 +47,8 @@ const defaultConfig = Object.freeze({ "stun:stun1.l.google.com:19302" ] } - ] + ], + bundlePolicy: "max-bundle" } });