소스 검색

feat: enableTcc, enableRemb, minParticipants.

master
George Politis 7 년 전
부모
커밋
ea46cbc479
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17
    0
      config.js

+ 17
- 0
config.js 파일 보기

178
     // Disables or enables RTX (RFC 4588) (defaults to false).
178
     // Disables or enables RTX (RFC 4588) (defaults to false).
179
     // disableRtx: false,
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
     // Use XEP-0215 to fetch STUN and TURN servers.
198
     // Use XEP-0215 to fetch STUN and TURN servers.
182
     // useStunTurn: true,
199
     // useStunTurn: true,
183
 
200
 

Loading…
취소
저장