FS-7509: change res sizes
This commit is contained in:
parent
a64d8b01d1
commit
1619a749e8
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue