Sfoglia il codice sorgente

feat: enableTcc, enableRemb, minParticipants.

j8
George Politis 7 anni fa
parent
commit
ea46cbc479
1 ha cambiato i file con 17 aggiunte e 0 eliminazioni
  1. 17
    0
      config.js

+ 17
- 0
config.js Vedi File

@@ -178,6 +178,23 @@ var config = {
178 178
     // Disables or enables RTX (RFC 4588) (defaults to false).
179 179
     // disableRtx: false,
180 180
 
181
+    // Disables or enables TCC (the default is in Jicofo and set to true)
182
+    // (draft-holmer-rmcat-transport-wide-cc-extensions-01). This setting
183
+    // affects congestion control, it practically enables send-side bandwidth
184
+    // estimations.
185
+    // enableTcc: true,
186
+
187
+    // Disables or enables REMB (the default is in Jicofo and set to false)
188
+    // (draft-alvestrand-rmcat-remb-03). This setting affects congestion
189
+    // control, it practically enables recv-side bandwidth estimations. When
190
+    // both TCC and REMB are enabled, TCC takes precedence. When both are
191
+    // disabled, then bandwidth estimations are disabled.
192
+    // enableRemb: false,
193
+
194
+    // Defines the minimum number of participants to start a call (the default
195
+    // is set in Jicofo and set to 2).
196
+    // minParticipants: 2,
197
+
181 198
     // Use XEP-0215 to fetch STUN and TURN servers.
182 199
     // useStunTurn: true,
183 200
 

Loading…
Annulla
Salva