Ver código fonte

Revert "fix(conference): Signal muted tracks on join when ssrc-rewriting is enabled."

This reverts commit 006457faa0.
release-8443
Jaya Allamsetty 1 ano atrás
pai
commit
315582f6eb
1 arquivos alterados com 1 adições e 5 exclusões
  1. 1
    5
      JitsiConference.js

+ 1
- 5
JitsiConference.js Ver arquivo

@@ -2215,11 +2215,7 @@ JitsiConference.prototype._acceptJvbIncomingCall = function(jingleSession, jingl
2215 2215
     // Open a channel with the videobridge.
2216 2216
     this._setBridgeChannel(jingleOffer, jingleSession.peerconnection);
2217 2217
 
2218
-    // When ssrc-rewriting is enabled, muted sources that are signaled to Jicofo will not create a broadcast storm.
2219
-    // Therefore, it is ok to signal all the tracks to Jicofo. In the legacy mode, we do not want to signal any
2220
-    // tracks that are muted at join time.
2221
-    const localTracks = FeatureFlags.isSsrcRewritingSupported()
2222
-        ? this.getLocalTracks() : this._getInitialLocalTracks();
2218
+    const localTracks = this._getInitialLocalTracks();
2223 2219
 
2224 2220
     try {
2225 2221
         jingleSession.acceptOffer(

Carregando…
Cancelar
Salvar