Home
last modified time | relevance | path

Searched refs:rtcConfig (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/sdk/android/api/org/webrtc/
DPeerConnectionFactory.java370 PeerConnection createPeerConnectionInternal(PeerConnection.RTCConfiguration rtcConfig, in createPeerConnectionInternal() argument
379 nativeFactory, rtcConfig, constraints, nativeObserver, sslCertificateVerifier); in createPeerConnectionInternal()
392 public PeerConnection createPeerConnection(PeerConnection.RTCConfiguration rtcConfig, in createPeerConnection() argument
395 rtcConfig, constraints, observer, /* sslCertificateVerifier= */ null); in createPeerConnection()
406 PeerConnection.RTCConfiguration rtcConfig = new PeerConnection.RTCConfiguration(iceServers); in createPeerConnection() local
407 return createPeerConnection(rtcConfig, constraints, observer); in createPeerConnection()
413 PeerConnection.RTCConfiguration rtcConfig = new PeerConnection.RTCConfiguration(iceServers); in createPeerConnection() local
414 return createPeerConnection(rtcConfig, observer); in createPeerConnection()
419 PeerConnection.RTCConfiguration rtcConfig, PeerConnection.Observer observer) { in createPeerConnection() argument
420 return createPeerConnection(rtcConfig, null /* constraints */, observer); in createPeerConnection()
[all …]
/external/autotest/client/common_lib/cros/webrtc_scripts/
Dloopback-peerconnection.js37 this.rtcConfig = {'sdpSemantics': 'plan-b'}; property
128 this.localConnection = new RTCPeerConnection(this.rtcConfig,
133 this.remoteConnection = new RTCPeerConnection(this.rtcConfig,
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DPeerConnectionEndToEndTest.java679 PeerConnection.RTCConfiguration rtcConfig = new PeerConnection.RTCConfiguration(iceServers); in testCompleteSession() local
680 rtcConfig.enableDtlsSrtp = true; in testCompleteSession()
683 PeerConnection offeringPC = factory.createPeerConnection(rtcConfig, offeringExpectations); in testCompleteSession()
687 PeerConnection answeringPC = factory.createPeerConnection(rtcConfig, answeringExpectations); in testCompleteSession()
946 PeerConnection.RTCConfiguration rtcConfig = new PeerConnection.RTCConfiguration(iceServers); in testDataChannelOnlySession() local
947 rtcConfig.enableDtlsSrtp = true; in testDataChannelOnlySession()
950 PeerConnection offeringPC = factory.createPeerConnection(rtcConfig, offeringExpectations); in testDataChannelOnlySession()
954 PeerConnection answeringPC = factory.createPeerConnection(rtcConfig, answeringExpectations); in testDataChannelOnlySession()
1108 PeerConnection.RTCConfiguration rtcConfig = in testSurfaceIceCandidatesWhenIceTransportTypeChanged() local
1111 rtcConfig.iceTransportsType = PeerConnection.IceTransportsType.NONE; in testSurfaceIceCandidatesWhenIceTransportTypeChanged()
[all …]
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DPeerConnectionClient.java592 PeerConnection.RTCConfiguration rtcConfig = in createPeerConnectionInternal() local
596 rtcConfig.tcpCandidatePolicy = PeerConnection.TcpCandidatePolicy.DISABLED; in createPeerConnectionInternal()
597 rtcConfig.bundlePolicy = PeerConnection.BundlePolicy.MAXBUNDLE; in createPeerConnectionInternal()
598 rtcConfig.rtcpMuxPolicy = PeerConnection.RtcpMuxPolicy.REQUIRE; in createPeerConnectionInternal()
599 rtcConfig.continualGatheringPolicy = PeerConnection.ContinualGatheringPolicy.GATHER_CONTINUALLY; in createPeerConnectionInternal()
601 rtcConfig.keyType = PeerConnection.KeyType.ECDSA; in createPeerConnectionInternal()
603 rtcConfig.enableDtlsSrtp = !peerConnectionParameters.loopback; in createPeerConnectionInternal()
604 rtcConfig.sdpSemantics = PeerConnection.SdpSemantics.UNIFIED_PLAN; in createPeerConnectionInternal()
606 peerConnection = factory.createPeerConnection(rtcConfig, pcObserver); in createPeerConnectionInternal()