]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-7509: change res sizes
authorAnthony Minessale <anthm@freeswitch.org>
Fri, 5 Dec 2014 23:18:06 +0000 (17:18 -0600)
committerMichael Jerris <mike@jerris.com>
Thu, 28 May 2015 17:46:51 +0000 (12:46 -0500)
html5/verto/video_demo/index.html
html5/verto/video_demo/verto.js

index c0cdf74224a93ab4fd981fa2422106b446c42bca..227444f454069b1d4eca7457bf0e3c76e3299161 100644 (file)
@@ -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>
index dc9b7f1dd11d49fb37ee7be4b148c8ea2495c01f..c6575fa39e00f9d88e9cd9e212dfcea0475d58e0 100644 (file)
@@ -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,