|
@@ -299,6 +299,9 @@ ColibriFocus.prototype._makeConference = function (errorCallback) {
|
299
|
299
|
if (config.adaptiveLastN) {
|
300
|
300
|
elemAttrs['adaptive-last-n'] = 'true';
|
301
|
301
|
}
|
|
302
|
+ if (config.adaptiveSimulcast) {
|
|
303
|
+ elemAttrs['adaptive-simulcast'] = 'true';
|
|
304
|
+ }
|
302
|
305
|
}
|
303
|
306
|
}
|
304
|
307
|
|
|
@@ -848,6 +851,9 @@ ColibriFocus.prototype.addNewParticipant = function (peer) {
|
848
|
851
|
if (config.adaptiveLastN) {
|
849
|
852
|
elemAttrs['adaptive-last-n'] = 'true';
|
850
|
853
|
}
|
|
854
|
+ if (config.adaptiveSimulcast) {
|
|
855
|
+ elemAttrs['adaptive-simulcast'] = 'true';
|
|
856
|
+ }
|
851
|
857
|
}
|
852
|
858
|
}
|
853
|
859
|
|