mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-13 15:50:59 +00:00
FS-10814 - [verto_communicator] Do not change video resolution if auto detect video settings is off
This commit is contained in:
parent
9a8cbf7797
commit
829b68a431
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user