Home
last modified time | relevance | path

Searched refs:videoCapturer (Results 1 – 17 of 17) sorted by relevance

/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/examples/androidnativeapi/java/org/webrtc/examples/androidnativeapi/
H A DMainActivity.java34 private @Nullable VideoCapturer videoCapturer; field in MainActivity
48 if (videoCapturer == null) { in onCreate()
49 videoCapturer = createVideoCapturer(getApplicationContext()); in onCreate()
52 localRenderer, remoteRenderer, videoCapturer, videoCapturerSurfaceTextureHelper); in onCreate()
102 if (videoCapturer != null) { in hangup()
104 videoCapturer.stopCapture(); in hangup()
108 videoCapturer.dispose(); in hangup()
109 videoCapturer = null; in hangup()
H A DCallClient.java33 private VideoCapturer videoCapturer; field in CallClient
43 public void call(VideoSink localSink, VideoSink remoteSink, VideoCapturer videoCapturer, in call() argument
47 videoCapturer.initialize(videoCapturerSurfaceTextureHelper, applicationContext, in call()
49 videoCapturer.startCapture(CAPTURE_WIDTH, CAPTURE_HEIGHT, CAPTURE_FPS); in call()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/examples/androidnativeapi/java/org/webrtc/examples/androidnativeapi/
H A DMainActivity.java34 private @Nullable VideoCapturer videoCapturer; field in MainActivity
48 if (videoCapturer == null) { in onCreate()
49 videoCapturer = createVideoCapturer(getApplicationContext()); in onCreate()
52 localRenderer, remoteRenderer, videoCapturer, videoCapturerSurfaceTextureHelper); in onCreate()
102 if (videoCapturer != null) { in hangup()
104 videoCapturer.stopCapture(); in hangup()
108 videoCapturer.dispose(); in hangup()
109 videoCapturer = null; in hangup()
H A DCallClient.java33 private VideoCapturer videoCapturer; field in CallClient
43 public void call(VideoSink localSink, VideoSink remoteSink, VideoCapturer videoCapturer, in call() argument
47 videoCapturer.initialize(videoCapturerSurfaceTextureHelper, applicationContext, in call()
49 videoCapturer.startCapture(CAPTURE_WIDTH, CAPTURE_HEIGHT, CAPTURE_FPS); in call()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/examples/unityplugin/java/src/org/webrtc/
H A DUnityUtility.java34 VideoCapturer videoCapturer = enumerator.createCapturer(deviceName, null); in createCameraCapturer() local
36 if (videoCapturer != null) { in createCameraCapturer()
37 return videoCapturer; in createCameraCapturer()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/examples/unityplugin/java/src/org/webrtc/
H A DUnityUtility.java34 VideoCapturer videoCapturer = enumerator.createCapturer(deviceName, null); in createCameraCapturer() local
36 if (videoCapturer != null) { in createCameraCapturer()
37 return videoCapturer; in createCameraCapturer()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DCallActivity.java441 if (videoCapturer != null) { in createCameraCapturer()
442 return videoCapturer; in createCameraCapturer()
454 if (videoCapturer != null) { in createCameraCapturer()
455 return videoCapturer; in createCameraCapturer()
702 final VideoCapturer videoCapturer;
706 videoCapturer = new FileVideoCapturer(videoFileAsCamera);
720 videoCapturer = createCameraCapturer(new Camera2Enumerator(this));
725 if (videoCapturer == null) {
729 return videoCapturer;
749 VideoCapturer videoCapturer = null;
[all …]
H A DPeerConnectionClient.java158 private VideoCapturer videoCapturer; field in PeerConnectionClient
373 this.videoCapturer = videoCapturer; in createPeerConnection()
706 if (videoCapturer != null) { in closeInternal()
708 videoCapturer.stopCapture(); in closeInternal()
713 videoCapturer.dispose(); in closeInternal()
714 videoCapturer = null; in closeInternal()
871 if (videoCapturer != null && !videoCapturerStopped) { in stopVideoSource()
874 videoCapturer.stopCapture(); in stopVideoSource()
884 if (videoCapturer != null && videoCapturerStopped) { in startVideoSource()
1158 if (videoCapturer instanceof CameraVideoCapturer) { in switchCameraInternal()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DCallActivity.java441 if (videoCapturer != null) { in createCameraCapturer()
442 return videoCapturer; in createCameraCapturer()
454 if (videoCapturer != null) { in createCameraCapturer()
455 return videoCapturer; in createCameraCapturer()
702 final VideoCapturer videoCapturer;
706 videoCapturer = new FileVideoCapturer(videoFileAsCamera);
720 videoCapturer = createCameraCapturer(new Camera2Enumerator(this));
725 if (videoCapturer == null) {
729 return videoCapturer;
749 VideoCapturer videoCapturer = null;
[all …]
H A DPeerConnectionClient.java157 private VideoCapturer videoCapturer; field in PeerConnectionClient
372 this.videoCapturer = videoCapturer; in createPeerConnection()
705 if (videoCapturer != null) { in closeInternal()
707 videoCapturer.stopCapture(); in closeInternal()
712 videoCapturer.dispose(); in closeInternal()
713 videoCapturer = null; in closeInternal()
869 if (videoCapturer != null && !videoCapturerStopped) { in stopVideoSource()
872 videoCapturer.stopCapture(); in stopVideoSource()
882 if (videoCapturer != null && videoCapturerStopped) { in startVideoSource()
1156 if (videoCapturer instanceof CameraVideoCapturer) { in switchCameraInternal()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DPeerConnectionTest.java587 final VideoCapturer videoCapturer = in testCompleteSession() local
589 final VideoSource videoSource = factory.createVideoSource(videoCapturer); in testCompleteSession()
590 videoCapturer.startCapture(640, 480, 30); in testCompleteSession()
772 videoCapturer.stopCapture(); in testCompleteSession()
773 videoCapturer.dispose(); in testCompleteSession()
807 final VideoCapturer videoCapturer = in testTrackRemovalAndAddition() local
809 final VideoSource videoSource = factory.createVideoSource(videoCapturer); in testTrackRemovalAndAddition()
810 videoCapturer.startCapture(640, 480, 30); in testTrackRemovalAndAddition()
957 videoCapturer.stopCapture(); in testTrackRemovalAndAddition()
958 videoCapturer.dispose(); in testTrackRemovalAndAddition()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DPeerConnectionEndToEndTest.java693 final VideoCapturer videoCapturer = in testCompleteSession() local
698 videoCapturer.initialize(surfaceTextureHelper, InstrumentationRegistry.getTargetContext(), in testCompleteSession()
700 videoCapturer.startCapture(640, 480, 30); in testCompleteSession()
920 videoCapturer.stopCapture(); in testCompleteSession()
921 videoCapturer.dispose(); in testCompleteSession()
1188 final VideoCapturer videoCapturer = in testTrackRemovalAndAddition() local
1195 videoCapturer.startCapture(640, 480, 30); in testTrackRemovalAndAddition()
1350 videoCapturer.stopCapture(); in testTrackRemovalAndAddition()
1351 videoCapturer.dispose(); in testTrackRemovalAndAddition()
1428 final VideoCapturer videoCapturer = in testRemoteStreamUpdatedWhenTracksAddedOrRemoved() local
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/sdk/android/instrumentationtests/src/org/webrtc/
H A DPeerConnectionEndToEndTest.java693 final VideoCapturer videoCapturer = in testCompleteSession() local
698 videoCapturer.initialize(surfaceTextureHelper, InstrumentationRegistry.getTargetContext(), in testCompleteSession()
700 videoCapturer.startCapture(640, 480, 30); in testCompleteSession()
920 videoCapturer.stopCapture(); in testCompleteSession()
921 videoCapturer.dispose(); in testCompleteSession()
1188 final VideoCapturer videoCapturer = in testTrackRemovalAndAddition() local
1195 videoCapturer.startCapture(640, 480, 30); in testTrackRemovalAndAddition()
1350 videoCapturer.stopCapture(); in testTrackRemovalAndAddition()
1351 videoCapturer.dispose(); in testTrackRemovalAndAddition()
1428 final VideoCapturer videoCapturer = in testRemoteStreamUpdatedWhenTracksAddedOrRemoved() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DPeerConnectionEndToEndTest.java693 final VideoCapturer videoCapturer = in testCompleteSession() local
698 videoCapturer.initialize(surfaceTextureHelper, InstrumentationRegistry.getTargetContext(), in testCompleteSession()
700 videoCapturer.startCapture(640, 480, 30); in testCompleteSession()
920 videoCapturer.stopCapture(); in testCompleteSession()
921 videoCapturer.dispose(); in testCompleteSession()
1188 final VideoCapturer videoCapturer = in testTrackRemovalAndAddition() local
1195 videoCapturer.startCapture(640, 480, 30); in testTrackRemovalAndAddition()
1350 videoCapturer.stopCapture(); in testTrackRemovalAndAddition()
1351 videoCapturer.dispose(); in testTrackRemovalAndAddition()
1428 final VideoCapturer videoCapturer = in testRemoteStreamUpdatedWhenTracksAddedOrRemoved() local
[all …]
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/sdk/android/instrumentationtests/src/org/webrtc/
H A DPeerConnectionEndToEndTest.java693 final VideoCapturer videoCapturer = in testCompleteSession() local
698 videoCapturer.initialize(surfaceTextureHelper, InstrumentationRegistry.getTargetContext(), in testCompleteSession()
700 videoCapturer.startCapture(640, 480, 30); in testCompleteSession()
920 videoCapturer.stopCapture(); in testCompleteSession()
921 videoCapturer.dispose(); in testCompleteSession()
1188 final VideoCapturer videoCapturer = in testTrackRemovalAndAddition() local
1195 videoCapturer.startCapture(640, 480, 30); in testTrackRemovalAndAddition()
1350 videoCapturer.stopCapture(); in testTrackRemovalAndAddition()
1351 videoCapturer.dispose(); in testTrackRemovalAndAddition()
1428 final VideoCapturer videoCapturer = in testRemoteStreamUpdatedWhenTracksAddedOrRemoved() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
H A DPeerConnectionClientTest.java272 PeerConnectionParameters peerConnectionParameters, VideoCapturer videoCapturer) { in createPeerConnectionClient() argument
287 client.createPeerConnection(localRenderer, remoteRenderer, videoCapturer, signalingParameters); in createPeerConnectionClient()
386 private void doLoopbackTest(PeerConnectionParameters parameters, VideoCapturer videoCapturer, in doLoopbackTest() argument
398 pcClient = createPeerConnectionClient(localRenderer, remoteRenderer, parameters, videoCapturer); in doLoopbackTest()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
H A DPeerConnectionClientTest.java272 PeerConnectionParameters peerConnectionParameters, VideoCapturer videoCapturer) { in createPeerConnectionClient() argument
287 client.createPeerConnection(localRenderer, remoteRenderer, videoCapturer, signalingParameters); in createPeerConnectionClient()
386 private void doLoopbackTest(PeerConnectionParameters parameters, VideoCapturer videoCapturer, in doLoopbackTest() argument
398 pcClient = createPeerConnectionClient(localRenderer, remoteRenderer, parameters, videoCapturer); in doLoopbackTest()