/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/ |
D | VideoTrackTest.java | 27 private VideoSource videoSource; field in VideoTrackTest 38 videoSource = factory.createVideoSource(/* isScreencast= */ false); in setUp() 39 videoTrack = factory.createVideoTrack("video", videoSource); in setUp() 92 videoSource.getCapturerObserver().onFrameCaptured(videoFrame); in testAddingSameVideoSinkMultipleTimes() 113 videoSource.getCapturerObserver().onFrameCaptured(videoFrame); in testAddingAndRemovingVideoSink()
|
D | PeerConnectionEndToEndTest.java | 640 PeerConnection pc, VideoSource videoSource, String streamLabel, String videoTrackId, in addTracksToPC() argument 643 VideoTrack videoTrack = factory.createVideoTrack(videoTrackId, videoSource); in addTracksToPC() 697 final VideoSource videoSource = factory.createVideoSource(/* isScreencast= */ false); in testCompleteSession() local 699 videoSource.getCapturerObserver()); in testCompleteSession() 704 addTracksToPC(factory, offeringPC, videoSource, "offeredMediaStream", "offeredVideoTrack", in testCompleteSession() 734 WeakReference<MediaStream> aLMS = addTracksToPC(factory, answeringPC, videoSource, in testCompleteSession() 922 videoSource.dispose(); in testCompleteSession() 1192 final VideoSource videoSource = factory.createVideoSource(/* isScreencast= */ false); in testTrackRemovalAndAddition() local 1194 videoSource.getCapturerObserver()); in testTrackRemovalAndAddition() 1200 addTracksToPC(factory, offeringPC, videoSource, "offeredMediaStream", "offeredVideoTrack", in testTrackRemovalAndAddition() [all …]
|
/external/webrtc/examples/unityplugin/java/src/org/webrtc/ |
D | UnityUtility.java | 50 VideoSource videoSource = new VideoSource(nativeTrackSource); in LinkCamera() local 53 videoSource.getCapturerObserver()); in LinkCamera()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowMediaRecorder.java | 44 private int videoSource; field in ShadowMediaRecorder 151 videoSource = video_source; in setVideoSource() 241 return videoSource; in getVideoSource()
|
/external/webrtc/sdk/objc/unittests/ |
D | RTCPeerConnectionFactory_xctest.m | 225 RTC_OBJC_TYPE(RTCVideoSource) * videoSource; 229 videoSource = [factory videoSource]; 230 XCTAssertNotNil(videoSource); 233 videoSource = nil; 263 videoTrack = [factory videoTrackWithSource:[factory videoSource] trackId:@"videoTrack"];
|
/external/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | PeerConnectionClient.java | 136 @Nullable private VideoSource videoSource; field in PeerConnectionClient 717 if (videoSource != null) { in closeInternal() 718 videoSource.dispose(); in closeInternal() 719 videoSource = null; in closeInternal() 942 videoSource = factory.createVideoSource(capturer.isScreencast()); in createVideoTrack() 943 capturer.initialize(surfaceTextureHelper, appContext, videoSource.getCapturerObserver()); in createVideoTrack() 946 localVideoTrack = factory.createVideoTrack(VIDEO_TRACK_ID, videoSource); in createVideoTrack() 1188 videoSource.adaptOutputFormat(width, height, framerate); in changeCaptureFormatInternal()
|
/external/webrtc/sdk/objc/api/peerconnection/ |
D | RTCPeerConnectionFactory.h | 61 - (RTC_OBJC_TYPE(RTCVideoSource) *)videoSource;
|
D | RTCPeerConnectionFactory.mm | 232 - (RTC_OBJC_TYPE(RTCVideoSource) *)videoSource { method in RTCPeerConnectionFactory
|
/external/webrtc/examples/objc/AppRTCMobile/ |
D | ARDAppClient.m | 738 RTC_OBJC_TYPE(RTCVideoSource) *source = [_factory videoSource];
|