Skip to content

Commit

Permalink
fix(caps): Disable TCC on Firefox.
Browse files Browse the repository at this point in the history
There is a known issue with Firefox where the BWE gets halved on every renegotiation causing the low upload bitrates from the Firefox clients.
  • Loading branch information
jallamsetty1 authored and Mahmud Apak committed Aug 26, 2021
1 parent 99dcb1b commit 70b0870
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/xmpp/xmpp.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,9 @@ export default class XMPP extends Listenable {
if (typeof this.options.enableRemb === 'undefined' || this.options.enableRemb) {
this.caps.addFeature('http://jitsi.org/remb');
}
if (typeof this.options.enableTcc === 'undefined' || this.options.enableTcc) {

// Disable TCC on Firefox because of a known issue where BWE is halved on every renegotiation.
if (!browser.isFirefox() && (typeof this.options.enableTcc === 'undefined' || this.options.enableTcc)) {
this.caps.addFeature('http://jitsi.org/tcc');
}

Expand Down

0 comments on commit 70b0870

Please sign in to comment.