Home
last modified time | relevance | path

Searched refs:videoSource (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DVideoTrackTest.java27 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()
DPeerConnectionEndToEndTest.java640 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/
DUnityUtility.java50 VideoSource videoSource = new VideoSource(nativeTrackSource); in LinkCamera() local
53 videoSource.getCapturerObserver()); in LinkCamera()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowMediaRecorder.java44 private int videoSource; field in ShadowMediaRecorder
151 videoSource = video_source; in setVideoSource()
241 return videoSource; in getVideoSource()
/external/webrtc/sdk/objc/unittests/
DRTCPeerConnectionFactory_xctest.m225 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/
DPeerConnectionClient.java136 @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/
DRTCPeerConnectionFactory.h61 - (RTC_OBJC_TYPE(RTCVideoSource) *)videoSource;
DRTCPeerConnectionFactory.mm232 - (RTC_OBJC_TYPE(RTCVideoSource) *)videoSource { method in RTCPeerConnectionFactory
/external/webrtc/examples/objc/AppRTCMobile/
DARDAppClient.m738 RTC_OBJC_TYPE(RTCVideoSource) *source = [_factory videoSource];