Searched refs:nativeFactory (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/sdk/android/api/org/webrtc/ |
D | PeerConnectionFactory.java | 55 private long nativeFactory; field in PeerConnectionFactory 358 PeerConnectionFactory(long nativeFactory) { in PeerConnectionFactory() argument 360 if (nativeFactory == 0) { in PeerConnectionFactory() 363 this.nativeFactory = nativeFactory; in PeerConnectionFactory() 379 nativeFactory, rtcConfig, constraints, nativeObserver, sslCertificateVerifier); in createPeerConnectionInternal() 432 return new MediaStream(nativeCreateLocalMediaStream(nativeFactory, label)); in createLocalMediaStream() 444 return new VideoSource(nativeCreateVideoSource(nativeFactory, isScreencast, alignTimestamps)); in createVideoSource() 459 nativeCreateVideoTrack(nativeFactory, id, source.getNativeVideoTrackSource())); in createVideoTrack() 464 return new AudioSource(nativeCreateAudioSource(nativeFactory, constraints)); in createAudioSource() 469 return new AudioTrack(nativeCreateAudioTrack(nativeFactory, id, source.getNativeAudioSource())); in createAudioTrack() [all …]
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCPeerConnectionFactory+Private.h | 27 readonly) rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface> nativeFactory;
|
D | RTCAudioTrack.mm | 33 factory.nativeFactory->CreateAudioTrack(nativeId, source.nativeAudioSource);
|
D | RTCVideoTrack.mm | 33 factory.nativeFactory->CreateVideoTrack(nativeId,
|
D | RTCMediaStream.mm | 34 factory.nativeFactory->CreateLocalMediaStream(nativeId);
|
D | RTCPeerConnectionFactory.mm | 64 @synthesize nativeFactory = _nativeFactory;
|
D | RTCPeerConnection.mm | 344 _peerConnection = factory.nativeFactory->CreatePeerConnection(*config, std::move(deps));
|