1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

Don't consider system users when deciding simulcast.

This prevents simulcast from being switched on when we enable
recording.
This commit is contained in:
Juliusz Chroboczek 2021-12-02 00:08:48 +01:00
parent e74156e1b0
commit 662b8ad9b3

View file

@ -1085,7 +1085,15 @@ function doSimulcast() {
case 'off':
return false;
default:
if(Object.keys(serverConnection.users).length <= 2)
let count = 0;
for(let n in serverConnection.users) {
if(!serverConnection.users[n].permissions["system"]) {
count++;
if(count > 2)
break;
}
}
if(count <= 2)
return false;
let bps = getMaxVideoThroughput();
return bps <= 0 || bps >= 2 * simulcastRate;