Skip to content

Commit

Permalink
Revert "fix(conference): Signal muted tracks on join when ssrc-rewrit…
Browse files Browse the repository at this point in the history
…ing is enabled."

This reverts commit 006457f.
  • Loading branch information
jallamsetty1 committed Mar 14, 2024
1 parent 006457f commit 315582f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions JitsiConference.js
Original file line number Diff line number Diff line change
Expand Up @@ -2215,11 +2215,7 @@ JitsiConference.prototype._acceptJvbIncomingCall = function(jingleSession, jingl
// Open a channel with the videobridge.
this._setBridgeChannel(jingleOffer, jingleSession.peerconnection);

// When ssrc-rewriting is enabled, muted sources that are signaled to Jicofo will not create a broadcast storm.
// Therefore, it is ok to signal all the tracks to Jicofo. In the legacy mode, we do not want to signal any
// tracks that are muted at join time.
const localTracks = FeatureFlags.isSsrcRewritingSupported()
? this.getLocalTracks() : this._getInitialLocalTracks();
const localTracks = this._getInitialLocalTracks();

try {
jingleSession.acceptOffer(
Expand Down

0 comments on commit 315582f

Please sign in to comment.