浏览代码

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

This reverts commit 006457faa0.
release-8443
Jaya Allamsetty 1年前
父节点
当前提交
315582f6eb
共有 1 个文件被更改,包括 1 次插入5 次删除
  1. 1
    5
      JitsiConference.js

+ 1
- 5
JitsiConference.js 查看文件

2215
     // Open a channel with the videobridge.
2215
     // Open a channel with the videobridge.
2216
     this._setBridgeChannel(jingleOffer, jingleSession.peerconnection);
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
     try {
2220
     try {
2225
         jingleSession.acceptOffer(
2221
         jingleSession.acceptOffer(

正在加载...
取消
保存