Lines Matching refs:pc1
97 var pc1 = new RTCPeerConnection(pcConfig, pcConstraints);
98 constrainTurnCandidates(pc1);
99 constrainOfferToRemoveFec(pc1);
100 pc1StatTracker = new StatTracker(pc1, 50);
117 pc1.addStream(stream);
118 var call = new Call(pc1, pc2);
153 function Call(pc1, pc2) { argument
154 pc1.onicecandidate = applyIceCandidate.bind(pc2);
155 pc2.onicecandidate = applyIceCandidate.bind(pc1);
171 pc1.createOffer(gotDescription1, onCreateSessionDescriptionError);
179 pc1.setLocalDescription(desc);
190 pc1.setRemoteDescription(desc);
195 pc1.close();