提交 2c7d5303 authored 作者: Anthony Minessale's avatar Anthony Minessale

FS-8641 need to set min and max for less than 30 but if you set min and max to…

FS-8641 need to set min and max for less than 30 but if you set min and max to 30 and it doesn't support it it will fail, (maybe design these FPS params a little better webrtc politicians)
上级 83c52944
...@@ -558,8 +558,11 @@ ...@@ -558,8 +558,11 @@
video.optional.push({sourceId: obj.options.useCamera}); video.optional.push({sourceId: obj.options.useCamera});
} }
if (bestFrameRate && !window.moz) { if (bestFrameRate) {
video.optional.push({minFrameRate: bestFrameRate}); video.optional.push({minFrameRate: bestFrameRate});
if (bestFrameRate < 30) {
video.optional.push({maxFrameRate: bestFrameRate});
}
} }
} else { } else {
......
This diff was suppressed by a .gitattributes entry.
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论