Updated Demos so they work on FF, changed the third argument in CreateOffer to null as it doesnot really require sdpConstraints.
R=juberti@google.com Review URL: https://webrtc-codereview.appspot.com/6769004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5356 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@@ -89,11 +89,11 @@ function call() {
|
||||
|
||||
pc1_local.addStream(localstream);
|
||||
trace("Adding local stream to pc1_local");
|
||||
pc1_local.createOffer(gotDescription1Local, null, sdpConstraints);
|
||||
pc1_local.createOffer(gotDescription1Local, null, null);
|
||||
|
||||
pc2_local.addStream(localstream);
|
||||
trace("Adding local stream to pc2_local");
|
||||
pc2_local.createOffer(gotDescription2Local, null, sdpConstraints);
|
||||
pc2_local.createOffer(gotDescription2Local, null, null);
|
||||
}
|
||||
|
||||
function gotDescription1Local(desc) {
|
||||
|
Reference in New Issue
Block a user