From: Italo Rossi Date: Tue, 28 Nov 2017 20:31:49 +0000 (-0300) Subject: FS-10814 - [verto_communicator] Do not change video resolution if auto detect video... X-Git-Tag: v1.8.1~3^2~263 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=058fb317895ccd3753c472a44099c4ec17e3efc5;p=thirdparty%2Ffreeswitch.git FS-10814 - [verto_communicator] Do not change video resolution if auto detect video settings is off --- diff --git a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js index 509182d9a5..5f22eacebb 100644 --- a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js +++ b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js @@ -427,6 +427,11 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora } updateResolutions(resolutions['validRes']); + /* Do not touch video device resolution if autoBand is off and we have selected a vidQual */ + if (!storage.data.autoBand && storage.data.vidQual) { + w = videoResolution[storage.data.vidQual].width; + h = videoResolution[storage.data.vidQual].height; + } data.instance.videoParams({ minWidth: w, minHeight: h,