/external/webrtc/talk/media/webrtc/ |
webrtcvideocapturerfactory.cc | 35 rtc::scoped_ptr<WebRtcVideoCapturer> capturer( 37 if (!capturer->Init(device)) { 40 return capturer.release();
|
/external/webrtc/talk/app/webrtc/objc/ |
RTCAVFoundationVideoSource.mm | 40 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);
|
RTCAVFoundationVideoSource+Internal.h | 34 @property(nonatomic, readonly) webrtc::AVFoundationVideoCapturer* capturer; variable
|
RTCVideoCapturer+Internal.h | 36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
|
RTCVideoCapturer.mm | 52 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/ |
VideoCapturerAndroidTestFixtures.java | 241 static public void release(VideoCapturerAndroid capturer) { 242 assertNotNull(capturer); 243 capturer.dispose(); 244 assertTrue(capturer.isReleased()); 247 static public void startCapturerAndRender(VideoCapturerAndroid capturer) 251 factory.createVideoSource(capturer, new MediaConstraints()); 259 assertTrue(capturer.isReleased()); 262 static public void switchCamera(VideoCapturerAndroid capturer) throws InterruptedException { 265 factory.createVideoSource(capturer, new MediaConstraints()); 271 capturer.switchCamera(new VideoCapturerAndroid.CameraSwitchHandler() [all...] |
VideoCapturerAndroidTest.java | 95 VideoCapturerAndroid capturer = VideoCapturerAndroid.create( local 97 assertNull(capturer); 102 // to a Java video renderer using a "default" capturer. 105 VideoCapturerAndroid capturer = local 107 VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer); 113 VideoCapturerAndroid capturer = local 115 VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer); 121 // to a Java video renderer using the front facing video capturer. 125 VideoCapturerAndroid capturer = local 127 VideoCapturerAndroidTestFixtures.startCapturerAndRender(capturer); 140 VideoCapturerAndroid capturer = local 150 VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", null); local 157 VideoCapturerAndroid capturer = local 167 VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", cameraEvents); local 176 final VideoCapturerAndroid capturer = VideoCapturerAndroid.create(deviceName, null); local 186 final VideoCapturerAndroid capturer = VideoCapturerAndroid.create(deviceName, null, local 198 VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", null); local 205 VideoCapturerAndroid capturer = local 216 VideoCapturerAndroid capturer = local 226 VideoCapturerAndroid capturer = local 238 VideoCapturerAndroid capturer = local 249 VideoCapturerAndroid capturer = local 260 VideoCapturerAndroid capturer = local 273 VideoCapturerAndroid capturer = local 283 VideoCapturerAndroid capturer = local 295 final VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", null); local 302 final VideoCapturerAndroid capturer = local 315 VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", cameraEvents, local 326 VideoCapturerAndroid capturer = VideoCapturerAndroid.create("", null); local 335 VideoCapturerAndroid capturer = local [all...] |
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
VideoCapturer.java | 38 Object capturer = nativeCreateVideoCapturer(deviceName); local 39 if (capturer != null) 40 return (VideoCapturer) (capturer); 52 throw new RuntimeException("Capturer can only be taken once!"); 60 // No-op iff this capturer is owned by a source (see comment on
|
/external/webrtc/webrtc/modules/desktop_capture/ |
mouse_cursor_monitor_unittest.cc | 65 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.get()) [all...] |
/external/webrtc/webrtc/test/ |
frame_generator_capturer.cc | 29 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/ |
devicemanager.cc | 158 // 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...] |
devicemanager_unittest.cc | 399 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateScreenCapturer( 401 EXPECT_FALSE(capturer.get() == NULL); 402 // TODO(hellner): creating a window capturer and immediately deleting it 423 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateScreenCapturer( 425 EXPECT_FALSE(capturer.get() == NULL); 432 scoped_ptr<cricket::VideoCapturer> capturer( 435 capturer->set_enable_camera_list(true); 436 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format)); 442 scoped_ptr<cricket::VideoCapturer> capturer( 445 capturer->set_enable_camera_list(true) [all...] |
/external/autotest/server/site_tests/network_WiFi_CliqueConnectDisconnect/ |
network_WiFi_CliqueConnectDisconnect.py | 20 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/ |
network_WiFi_CliqueLongConnect.py | 20 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/ |
fakescreencapturerfactory.h | 63 void OnWindowCapturerDestroyed(cricket::FakeVideoCapturer* capturer) { 64 if (capturer == window_capturer_) {
|
capturerenderadapter.h | 76 // Callback for frames received from the capturer. 77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame);
|
/external/webrtc/talk/app/webrtc/ |
videosource.h | 45 // 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,
|
remotevideocapturer_unittest.cc | 74 void OnStateChange(VideoCapturer* capturer, 76 EXPECT_EQ(&capturer_, capturer); 80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) { 81 EXPECT_EQ(&capturer_, capturer);
|
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/ |
network_WiFi_ChaosConnectDisconnect.py | 19 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/ |
network_WiFi_ChaosLongConnect.py | 20 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/autotest/server/cros/clique_lib/ |
clique_runner.py | 182 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_workers [all...] |
/external/webrtc/talk/session/media/ |
channelmanager.h | 139 // 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,
|
channelmanager.cc | 66 : 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, const VideoFormat& video_format) [all...] |
/external/autotest/server/cros/chaos_lib/ |
chaos_runner.py | 57 @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 did not find the SSID in scan o [all...] |
/external/webrtc/talk/app/webrtc/objc/public/ |
RTCPeerConnectionFactory.h | 64 // Creates a RTCVideoSource. The new source takes ownership of |capturer|. 66 - (RTCVideoSource *)videoSourceWithCapturer:(RTCVideoCapturer *)capturer
|