From b6786716074b8d5835de3a30b2b376f2a20707ae Mon Sep 17 00:00:00 2001 From: George Politis Date: Tue, 1 Dec 2015 13:24:15 -0600 Subject: [PATCH] Revert "Sets up simulcast for 2 layers." This reverts commit b2993d8cf3f647c3194257eef0b21b77026b7bef. --- modules/xmpp/TraceablePeerConnection.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/xmpp/TraceablePeerConnection.js b/modules/xmpp/TraceablePeerConnection.js index 5b006feb5..eb8771387 100644 --- a/modules/xmpp/TraceablePeerConnection.js +++ b/modules/xmpp/TraceablePeerConnection.js @@ -25,7 +25,7 @@ function TraceablePeerConnection(ice_config, constraints, session) { var Interop = require('sdp-interop').Interop; this.interop = new Interop(); var Simulcast = require('sdp-simulcast'); - this.simulcast = new Simulcast({numOfLayers: 2, explodeRemoteSimulcast: false}); + this.simulcast = new Simulcast({numOfLayers: 3, explodeRemoteSimulcast: false}); // override as desired this.trace = function (what, info) { @@ -218,8 +218,6 @@ if (TraceablePeerConnection.prototype.__defineGetter__ !== undefined) { function() { var desc = this.peerconnection.localDescription; - // TODO this should be after the Unified Plan -> Plan B - // transformation. desc = SSRCReplacement.mungeLocalVideoSSRC(desc); this.trace('getLocalDescription::preTransform', dumpSDP(desc));