|
@@ -179,7 +179,7 @@ TraceablePeerConnection.prototype.setLocalDescription = function (description, s
|
179
|
179
|
this.trace('setLocalDescription::preTransform (Plan B)', dumpSDP(description));
|
180
|
180
|
// if we're running on FF, transform to Plan A first.
|
181
|
181
|
if (navigator.mozGetUserMedia) {
|
182
|
|
- description = this.interop.toPlanA(description);
|
|
182
|
+ description = this.interop.toUnifiedPlan(description);
|
183
|
183
|
} else {
|
184
|
184
|
description = APP.simulcast.transformLocalDescription(description);
|
185
|
185
|
}
|
|
@@ -206,7 +206,7 @@ TraceablePeerConnection.prototype.setRemoteDescription = function (description,
|
206
|
206
|
this.trace('setRemoteDescription::preTransform (Plan B)', dumpSDP(description));
|
207
|
207
|
// if we're running on FF, transform to Plan A first.
|
208
|
208
|
if (navigator.mozGetUserMedia) {
|
209
|
|
- description = this.interop.toPlanA(description);
|
|
209
|
+ description = this.interop.toUnifiedPlan(description);
|
210
|
210
|
}
|
211
|
211
|
else {
|
212
|
212
|
description = APP.simulcast.transformRemoteDescription(description);
|