浏览代码

Removes second audio track for fake FF devices.

master
damencho 10 年前
父节点
当前提交
2017457a5e
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      modules/RTC/RTCUtils.js

+ 3
- 1
modules/RTC/RTCUtils.js 查看文件

170
     // this later can be a problem with some of the tests
170
     // this later can be a problem with some of the tests
171
     if(RTCBrowserType.isFirefox() && options.firefox_fake_device)
171
     if(RTCBrowserType.isFirefox() && options.firefox_fake_device)
172
     {
172
     {
173
-        constraints.audio = true;
173
+        // seems to be fixed now, removing this experimental fix, as having
174
+        // multiple audio tracks brake the tests
175
+        //constraints.audio = true;
174
         constraints.fake = true;
176
         constraints.fake = true;
175
     }
177
     }
176
 
178
 

正在加载...
取消
保存