From 1619a749e815fab647b2b4494548886789bf9080 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 5 Dec 2014 17:18:06 -0600 Subject: [PATCH] FS-7509: change res sizes --- html5/verto/video_demo/index.html | 4 ++-- html5/verto/video_demo/verto.js | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/html5/verto/video_demo/index.html b/html5/verto/video_demo/index.html index c0cdf74224..227444f454 100644 --- a/html5/verto/video_demo/index.html +++ b/html5/verto/video_demo/index.html @@ -233,10 +233,10 @@ So if you have Chrome handy, try it with that too.
Video Quality: - + - + diff --git a/html5/verto/video_demo/verto.js b/html5/verto/video_demo/verto.js index dc9b7f1dd1..c6575fa39e 100644 --- a/html5/verto/video_demo/verto.js +++ b/html5/verto/video_demo/verto.js @@ -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,