From 1ce22fb8c9fe8f1e7735a899e454839061ae6070 Mon Sep 17 00:00:00 2001 From: George Politis Date: Fri, 15 May 2015 12:47:29 +0200 Subject: [PATCH] Depend on sdp-interop@0.1.2, sdp-transform@1.4.0 --- modules/xmpp/TraceablePeerConnection.js | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/xmpp/TraceablePeerConnection.js b/modules/xmpp/TraceablePeerConnection.js index 47a33113e..5e8913a51 100644 --- a/modules/xmpp/TraceablePeerConnection.js +++ b/modules/xmpp/TraceablePeerConnection.js @@ -179,7 +179,7 @@ TraceablePeerConnection.prototype.setLocalDescription = function (description, s this.trace('setLocalDescription::preTransform (Plan B)', dumpSDP(description)); // if we're running on FF, transform to Plan A first. if (navigator.mozGetUserMedia) { - description = this.interop.toPlanA(description); + description = this.interop.toUnifiedPlan(description); } else { description = APP.simulcast.transformLocalDescription(description); } @@ -206,7 +206,7 @@ TraceablePeerConnection.prototype.setRemoteDescription = function (description, this.trace('setRemoteDescription::preTransform (Plan B)', dumpSDP(description)); // if we're running on FF, transform to Plan A first. if (navigator.mozGetUserMedia) { - description = this.interop.toPlanA(description); + description = this.interop.toUnifiedPlan(description); } else { description = APP.simulcast.transformRemoteDescription(description); diff --git a/package.json b/package.json index fe780e2c4..1ebc82438 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,8 @@ "events": "*", "pako": "*", "i18next-client": "1.7.7", - "sdp-interop": "jitsi/sdp-interop#f65fedfe57a", - "sdp-transform": "1.3.0", + "sdp-interop": "0.1.2", + "sdp-transform": "1.4.0", "async": "0.9.0", "retry": "0.6.1" },