Depend on sdp-interop@0.1.2, sdp-transform@1.4.0

This commit is contained in:
George Politis 2015-05-15 12:47:29 +02:00
parent e0cba855a6
commit 1ce22fb8c9
2 changed files with 4 additions and 4 deletions

View File

@ -179,7 +179,7 @@ TraceablePeerConnection.prototype.setLocalDescription = function (description, s
this.trace('setLocalDescription::preTransform (Plan B)', dumpSDP(description)); this.trace('setLocalDescription::preTransform (Plan B)', dumpSDP(description));
// if we're running on FF, transform to Plan A first. // if we're running on FF, transform to Plan A first.
if (navigator.mozGetUserMedia) { if (navigator.mozGetUserMedia) {
description = this.interop.toPlanA(description); description = this.interop.toUnifiedPlan(description);
} else { } else {
description = APP.simulcast.transformLocalDescription(description); description = APP.simulcast.transformLocalDescription(description);
} }
@ -206,7 +206,7 @@ TraceablePeerConnection.prototype.setRemoteDescription = function (description,
this.trace('setRemoteDescription::preTransform (Plan B)', dumpSDP(description)); this.trace('setRemoteDescription::preTransform (Plan B)', dumpSDP(description));
// if we're running on FF, transform to Plan A first. // if we're running on FF, transform to Plan A first.
if (navigator.mozGetUserMedia) { if (navigator.mozGetUserMedia) {
description = this.interop.toPlanA(description); description = this.interop.toUnifiedPlan(description);
} }
else { else {
description = APP.simulcast.transformRemoteDescription(description); description = APP.simulcast.transformRemoteDescription(description);

View File

@ -18,8 +18,8 @@
"events": "*", "events": "*",
"pako": "*", "pako": "*",
"i18next-client": "1.7.7", "i18next-client": "1.7.7",
"sdp-interop": "jitsi/sdp-interop#f65fedfe57a", "sdp-interop": "0.1.2",
"sdp-transform": "1.3.0", "sdp-transform": "1.4.0",
"async": "0.9.0", "async": "0.9.0",
"retry": "0.6.1" "retry": "0.6.1"
}, },