Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "fix(conference): Signal muted tracks on join when ssrc-rewrit… #2481

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading