FS-7509: change res sizes

This commit is contained in:
Anthony Minessale 2014-12-05 17:18:06 -06:00 committed by Michael Jerris
parent a64d8b01d1
commit 1619a749e8
2 changed files with 5 additions and 5 deletions

View File

@ -233,10 +233,10 @@ So if you have Chrome handy, try it with that too.
<fieldset data-role="controlgroup" data-type="horizontal"> <fieldset data-role="controlgroup" data-type="horizontal">
<legend><b>Video Quality</b>:</legend> <legend><b>Video Quality</b>:</legend>
<input type="radio" name="vqual" id="vqual_qvga" value="qvga"> <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"> <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"> <input type="radio" name="vqual" id="vqual_hd" value="hd">
<label for="vqual_hd">HD 1280x720</label> <label for="vqual_hd">HD 1280x720</label>

View File

@ -79,10 +79,10 @@ function check_vid_res()
{ {
if ($("#vqual_qvga").is(':checked')) { if ($("#vqual_qvga").is(':checked')) {
vid_width = 320; vid_width = 320;
vid_height = 180; vid_height = 240;
} else if ($("#vqual_vga").is(':checked')) { } else if ($("#vqual_vga").is(':checked')) {
vid_width = 640; vid_width = 640;
vid_height = 360; vid_height = 480;
} else if ($("#vqual_hd").is(':checked')) { } else if ($("#vqual_hd").is(':checked')) {
vid_width = 1280; vid_width = 1280;
vid_height = 720; vid_height = 720;
@ -557,7 +557,7 @@ function init() {
"minHeight": vid_height, "minHeight": vid_height,
"maxWidth": vid_width, "maxWidth": vid_width,
"maxHeight": vid_height, "maxHeight": vid_height,
"minFrameRate": 30 "minFrameRate": 30,
}, },
audioParams: { audioParams: {
googAutoGainControl: false, googAutoGainControl: false,