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,