From ea46cbc47996b3550312aacf62a07d087b6dc0e4 Mon Sep 17 00:00:00 2001 From: George Politis Date: Fri, 30 Mar 2018 20:32:53 +0000 Subject: [PATCH] feat: enableTcc, enableRemb, minParticipants. --- config.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/config.js b/config.js index 662a5c22f..b609092d0 100644 --- a/config.js +++ b/config.js @@ -178,6 +178,23 @@ var config = { // Disables or enables RTX (RFC 4588) (defaults to false). // disableRtx: false, + // Disables or enables TCC (the default is in Jicofo and set to true) + // (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting + // affects congestion control, it practically enables send-side bandwidth + // estimations. + // enableTcc: true, + + // Disables or enables REMB (the default is in Jicofo and set to false) + // (draft-alvestrand-rmcat-remb-03). This setting affects congestion + // control, it practically enables recv-side bandwidth estimations. When + // both TCC and REMB are enabled, TCC takes precedence. When both are + // disabled, then bandwidth estimations are disabled. + // enableRemb: false, + + // Defines the minimum number of participants to start a call (the default + // is set in Jicofo and set to 2). + // minParticipants: 2, + // Use XEP-0215 to fetch STUN and TURN servers. // useStunTurn: true,