From 058fb317895ccd3753c472a44099c4ec17e3efc5 Mon Sep 17 00:00:00 2001 From: Italo Rossi Date: Tue, 28 Nov 2017 17:31:49 -0300 Subject: [PATCH] FS-10814 - [verto_communicator] Do not change video resolution if auto detect video settings is off --- .../src/vertoService/services/vertoService.js | 5 +++++ 1 file changed, 5 insertions(+) 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,