Searched refs:capturer (Results 1 - 25 of 63) sorted by relevance

123

/external/webrtc/talk/media/webrtc/
H A Dwebrtcvideocapturerfactory.cc35 rtc::scoped_ptr<WebRtcVideoCapturer> capturer(
37 if (!capturer->Init(device)) {
40 return capturer.release();
/external/webrtc/talk/app/webrtc/objc/
H A DRTCAVFoundationVideoSource.mm40 rtc::scoped_ptr<webrtc::AVFoundationVideoCapturer> capturer;
41 capturer.reset(new webrtc::AVFoundationVideoCapturer());
43 factory.nativeFactory->CreateVideoSource(capturer.release(),
49 return self.capturer->GetUseBackCamera();
53 self.capturer->SetUseBackCamera(useBackCamera);
57 return self.capturer->GetCaptureSession();
60 - (webrtc::AVFoundationVideoCapturer*)capturer {
61 cricket::VideoCapturer* capturer = self.videoSource->GetVideoCapturer();
65 static_cast<webrtc::AVFoundationVideoCapturer*>(capturer);
H A DRTCAVFoundationVideoSource+Internal.h34 @property(nonatomic, readonly) webrtc::AVFoundationVideoCapturer* capturer; variable
H A DRTCVideoCapturer+Internal.h36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
H A DRTCVideoCapturer.mm52 rtc::scoped_ptr<cricket::VideoCapturer> capturer(
55 [[RTCVideoCapturer alloc] initWithCapturer:capturer.release()];
63 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer {
65 _capturer.reset(capturer);
/external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
H A DVideoCapturerAndroidTestFixtures.java241 static public void release(VideoCapturerAndroid capturer) { argument
242 assertNotNull(capturer);
243 capturer.dispose();
244 assertTrue(capturer.isReleased());
247 static public void startCapturerAndRender(VideoCapturerAndroid capturer) argument
251 factory.createVideoSource(capturer, new MediaConstraints());
259 assertTrue(capturer.isReleased());
262 static public void switchCamera(VideoCapturerAndroid capturer) throws InterruptedException { argument
265 factory.createVideoSource(capturer, new MediaConstraints());
271 capturer
302 cameraEventsInvoked(VideoCapturerAndroid capturer, CameraEvents events, Context appContext) argument
324 cameraCallsAfterStop( VideoCapturerAndroid capturer, Context appContext) argument
348 stopRestartVideoSource(VideoCapturerAndroid capturer) argument
371 startStopWithDifferentResolutions(VideoCapturerAndroid capturer, Context appContext) argument
408 waitUntilIdle(VideoCapturerAndroid capturer) argument
418 startWhileCameraIsAlreadyOpen( VideoCapturerAndroid capturer, Context appContext) argument
441 startWhileCameraIsAlreadyOpenAndCloseCamera( VideoCapturerAndroid capturer, Context appContext) argument
466 startWhileCameraIsAlreadyOpenAndStop( VideoCapturerAndroid capturer, Context appContext) argument
481 returnBufferLate(VideoCapturerAndroid capturer, Context appContext) argument
517 returnBufferLateEndToEnd(VideoCapturerAndroid capturer) argument
550 cameraFreezedEventOnBufferStarvationUsingTextures( VideoCapturerAndroid capturer, CameraEvents events, Context appContext) argument
577 scaleCameraOutput(VideoCapturerAndroid capturer) argument
[all...]
H A DVideoCapturerAndroidTest.java95 VideoCapturerAndroid capturer = VideoCapturerAndroid.create(
97 assertNull(capturer);
102 // to a Java video renderer using a "default" capturer.
105 VideoCapturerAndroid capturer =
107 VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer);
113 VideoCapturerAndroid capturer =
115 VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer);
121 // to a Java video renderer using the front facing video capturer.
125 VideoCapturerAndroid capturer =
127 VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer);
[all...]
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoCapturer.java38 Object capturer = nativeCreateVideoCapturer(deviceName);
39 if (capturer != null)
40 return (VideoCapturer) (capturer);
60 // No-op iff this capturer is owned by a source (see comment on
/external/webrtc/webrtc/modules/desktop_capture/
H A Dmouse_cursor_monitor_unittest.cc65 rtc::scoped_ptr<MouseCursorMonitor> capturer(
69 assert(capturer.get());
70 capturer->Init(this, MouseCursorMonitor::SHAPE_AND_POSITION);
71 capturer->Capture();
104 rtc::scoped_ptr<MouseCursorMonitor> capturer(
107 assert(capturer.get());
109 capturer->Init(this, MouseCursorMonitor::SHAPE_AND_POSITION);
110 capturer->Capture();
119 rtc::scoped_ptr<MouseCursorMonitor> capturer(
123 assert(capturer
[all...]
/external/webrtc/webrtc/test/
H A Dframe_generator_capturer.cc29 FrameGeneratorCapturer* capturer = new FrameGeneratorCapturer( local
32 if (!capturer->Init()) {
33 delete capturer;
37 return capturer;
47 FrameGeneratorCapturer* capturer = new FrameGeneratorCapturer( local
52 if (!capturer->Init()) {
53 delete capturer;
57 return capturer;
/external/webrtc/talk/media/devices/
H A Ddevicemanager.cc158 // return a fake video capturer device.
193 VideoCapturer* capturer = MaybeConstructFakeVideoCapturer(device); local
194 if (capturer) {
195 return capturer;
199 LOG(LS_ERROR) << "No video capturer factory for devices.";
202 capturer = video_device_capturer_factory_->Create(device);
203 if (!capturer) {
209 capturer->set_enable_camera_list(has_max);
211 capturer->ConstrainSupportedFormats(video_format);
213 return capturer;
221 FileVideoCapturer* capturer = new FileVideoCapturer; local
232 YuvFramesCapturer* capturer = new YuvFramesCapturer(); local
[all...]
/external/autotest/server/site_tests/network_WiFi_CliqueConnectDisconnect/
H A Dnetwork_WiFi_CliqueConnectDisconnect.py20 def run_once(self, capturer, capturer_frequency, capturer_ht_type,
25 @param capturer: a packet capture device
52 test_params = { 'capturer': capturer,
/external/autotest/server/site_tests/network_WiFi_CliqueLongConnect/
H A Dnetwork_WiFi_CliqueLongConnect.py20 def run_once(self, capturer, capturer_frequency, capturer_ht_type,
25 @param capturer: a packet capture device
50 test_params = { 'capturer': capturer,
/external/webrtc/talk/media/base/
H A Dfakescreencapturerfactory.h63 void OnWindowCapturerDestroyed(cricket::FakeVideoCapturer* capturer) { argument
64 if (capturer == window_capturer_) {
H A Dcapturerenderadapter.h76 // Callback for frames received from the capturer.
77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame);
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/
H A Dnetwork_WiFi_ChaosConnectDisconnect.py19 def run_once(self, capturer, capturer_frequency, capturer_ht_type,
23 @param capturer: a packet capture device
41 capturer.start_capture(capturer_frequency, ht_type=capturer_ht_type)
64 capturer.stop_capture(save_dir=self.outputdir,
/external/autotest/server/site_tests/network_WiFi_ChaosLongConnect/
H A Dnetwork_WiFi_ChaosLongConnect.py20 def run_once(self, capturer, capturer_frequency, capturer_ht_type, host,
25 @param capturer: a packet capture device
44 capturer.start_capture(capturer_frequency, ht_type=capturer_ht_type)
74 capturer.stop_capture(save_dir=self.outputdir,
/external/webrtc/talk/app/webrtc/
H A Dvideosource.h45 // The state is set depending on the result of starting the capturer.
46 // If the constraint can't be met or the capturer fails to start, the state
63 // VideoSource take ownership of |capturer|.
68 cricket::VideoCapturer* capturer,
85 // |output| will be served video frames as long as the underlying capturer
92 cricket::VideoCapturer* capturer,
98 void OnStateChange(cricket::VideoCapturer* capturer,
H A Dremotevideocapturer_unittest.cc74 void OnStateChange(VideoCapturer* capturer, argument
76 EXPECT_EQ(&capturer_, capturer);
80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) { argument
81 EXPECT_EQ(&capturer_, capturer);
/external/autotest/server/cros/clique_lib/
H A Dclique_runner.py182 def _cleanup(self, dut_objects, dut_locker, ap_locker, capturer,
191 @param capturer: a packet capture device.
197 capturer.close()
208 @param capturer_hostname: a string or None, hostname or IP of capturer.
227 capturer = site_linux_system.LinuxSystem(
265 capturer, conn_workers)
269 ap, ap_spec, capturer, job)
272 capturer, conn_workers)
281 capturer, conn_workers)
287 capturer, conn_worker
[all...]
/external/webrtc/talk/session/media/
H A Dchannelmanager.cc66 : capturer(c),
68 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
449 VideoCapturer* capturer) const {
450 ASSERT(capturer != NULL);
453 this, capturer, &formats));
458 VideoCapturer* capturer,
460 const std::vector<VideoFormat>* formats = capturer->GetSupportedFormats();
470 VideoCapturer* capturer, const VideoFormat& video_format) {
473 capture_manager_.get(), capturer, video_format));
487 VideoCapturer* capturer, cons
457 GetSupportedFormats_w( VideoCapturer* capturer, std::vector<cricket::VideoFormat>* out_formats) const argument
469 StartVideoCapture( VideoCapturer* capturer, const VideoFormat& video_format) argument
486 StopVideoCapture( VideoCapturer* capturer, const VideoFormat& video_format) argument
503 AddVideoRenderer( VideoCapturer* capturer, VideoRenderer* renderer) argument
510 RemoveVideoRenderer( VideoCapturer* capturer, VideoRenderer* renderer) argument
532 OnVideoCaptureStateChange(VideoCapturer* capturer, CaptureState result) argument
[all...]
H A Dchannelmanager.h139 // Gets capturer's supported formats in a thread safe manner
141 VideoCapturer* capturer) const;
159 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
160 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
210 void OnVideoCaptureStateChange(VideoCapturer* capturer,
213 VideoCapturer* capturer,
/external/autotest/server/cros/network/
H A Dchaos_clique_utils.py243 def scan_for_networks(ssid, capturer, ap_spec):
247 @param capturer: a packet capture device.
256 wifi_if = capturer.get_wlanif(freq, 'managed')
257 capturer.host.run('%s link set %s up' % (capturer.cmd_ip, wifi_if))
259 networks = capturer.iw_runner.wait_for_scan_result(
261 capturer.remove_interface(wifi_if)
265 def return_available_networks(ap, capturer, job, ap_spec):
269 @param capturer: a packet capture device
276 networks = scan_for_networks(ap.ssid, capturer, ap_spe
[all...]
/external/autotest/server/cros/chaos_lib/
H A Dchaos_runner.py57 @param capturer_hostname: a string or None, hostname or IP of capturer.
72 # Cleanup and reboot packet capturer before the test.
74 capturer = site_linux_system.LinuxSystem(capture_host, {},
87 'Packet capturer is not responding to scans. Check'
159 ap, capturer, job, self._ap_spec)
163 # Reboot the packet capturer device and
164 # reconfigure the capturer.
168 capturer.host.reboot()
169 capturer = site_linux_system.LinuxSystem(
173 # Packet capturer di
[all...]
/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCPeerConnectionFactory.h64 // Creates a RTCVideoSource. The new source takes ownership of |capturer|.
66 - (RTCVideoSource *)videoSourceWithCapturer:(RTCVideoCapturer *)capturer

Completed in 1225 milliseconds

123