提交 1619a749 authored 作者: Anthony Minessale's avatar Anthony Minessale 提交者: Michael Jerris

FS-7509: change res sizes

上级 a64d8b01
......@@ -233,10 +233,10 @@ So if you have Chrome handy, try it with that too.
<fieldset data-role="controlgroup" data-type="horizontal">
<legend><b>Video Quality</b>:</legend>
<input type="radio" name="vqual" id="vqual_qvga" value="qvga">
<label for="vqual_qvga">QVGA 320x180</label>
<label for="vqual_qvga">QVGA 320x240</label>
<input type="radio" name="vqual" id="vqual_vga" value="vga">
<label for="vqual_vga">VGA 640x360</label>
<label for="vqual_vga">VGA 640x480</label>
<input type="radio" name="vqual" id="vqual_hd" value="hd">
<label for="vqual_hd">HD 1280x720</label>
......
......@@ -79,10 +79,10 @@ function check_vid_res()
{
if ($("#vqual_qvga").is(':checked')) {
vid_width = 320;
vid_height = 180;
vid_height = 240;
} else if ($("#vqual_vga").is(':checked')) {
vid_width = 640;
vid_height = 360;
vid_height = 480;
} else if ($("#vqual_hd").is(':checked')) {
vid_width = 1280;
vid_height = 720;
......@@ -557,7 +557,7 @@ function init() {
"minHeight": vid_height,
"maxWidth": vid_width,
"maxHeight": vid_height,
"minFrameRate": 30
"minFrameRate": 30,
},
audioParams: {
googAutoGainControl: false,
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论