Depend on sdp-interop@0.1.2, sdp-transform@1.4.0
This commit is contained in:
parent
e0cba855a6
commit
1ce22fb8c9
|
@ -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);
|
||||
|
|
|
@ -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"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue