mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 00:22:35 +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']);
|
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({
|
data.instance.videoParams({
|
||||||
minWidth: w,
|
minWidth: w,
|
||||||
minHeight: h,
|
minHeight: h,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user