HomeSort by relevance Sort by last modified time
    Searched defs:capturer (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/webrtc/test/
frame_generator_capturer.cc 30 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/chromium_org/content/renderer/media/
webrtc_local_audio_track.cc 21 const scoped_refptr<WebRtcAudioCapturer>& capturer,
25 capturer_(capturer),
27 DCHECK(capturer.get() || webaudio_source);
54 scoped_refptr<WebRtcAudioCapturer> capturer; local
59 capturer = capturer_;
89 if (new_volume != 0 && capturer.get() && !webaudio_source_) {
92 capturer->SetVolume(new_volume);
195 // capturer as its sink otherwise two streams in different clock will be
rtc_peer_connection_handler_unittest.cc 281 scoped_refptr<WebRtcAudioCapturer> capturer; local
    [all...]
webrtc_audio_capturer.cc 137 scoped_refptr<WebRtcAudioCapturer> capturer = new WebRtcAudioCapturer( local
139 if (capturer->Initialize())
140 return capturer;
215 // Add the capturer to the WebRtcAudioDeviceImpl since it needs some hardware
216 // information from the capturer.
416 // Remove the capturer object from the WebRtcAudioDeviceImpl.
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager_unittest.cc 211 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
215 GetCapturerFrameSize(VideoCapturer* capturer) : width(0), height(0) {
216 capturer->SignalVideoFrame.connect(this,
218 static_cast<FakeVideoCapturer*>(capturer)->CaptureFrame();
229 // A capturer created before the default encoder config is set will have no
231 VideoCapturer* capturer = cm_->CreateVideoCapturer(); local
232 ASSERT_TRUE(capturer != NULL);
233 EXPECT_EQ(CS_RUNNING, capturer->Start(format));
234 GetCapturerFrameSize size(capturer);
237 delete capturer;
    [all...]
call.h 263 StartedCapture(cricket::VideoCapturer* capturer,
265 capturer(capturer),
268 cricket::VideoCapturer* capturer; member in struct:cricket::Call::StartedCapture
channelmanager.cc 65 : capturer(c),
67 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
316 LOG(LS_WARNING) << "failed to delete video capturer";
628 VideoCapturer* capturer) {
629 if (capturer == NULL) {
636 return capturer->GetId() == device.id;
705 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); local
706 if (capturer && default_video_encoder_config_.max_codec.id != 0) {
710 capturer->UpdateAspectRatio(
714 return capturer;
    [all...]
call.cc 486 // The capturer pretty much ignore this, but just in case we give it
509 VideoCapturer *capturer = video_channel->AddScreencast(ssrc, screencastid); local
510 if (capturer == NULL) {
511 LOG(LS_WARNING) << "Could not create screencast capturer.";
517 capturer, format)) {
523 if (!video_channel->SetCapturer(ssrc, capturer)) {
526 capturer, ScreencastFormatFromFps(fps));
534 std::make_pair(ssrc, StartedCapture(capturer, format)));
590 << " because there is no capturer.";
594 VideoCapturer* capturer = screencast_iter->second.capturer local
    [all...]
channel.cc 1979 VideoCapturer* capturer = iter->second; local
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/
vie_base_impl.cc 91 ViECapturer* capturer = is.Capture(provider->Id()); local
92 assert(capturer);
93 capturer->RegisterCpuOveruseObserver(observer);
115 ViECapturer* capturer = is.Capture(provider->Id()); local
116 if (capturer) {
117 capturer->SetCpuOveruseOptions(options);
141 ViECapturer* capturer = is.Capture(provider->Id()); local
142 if (capturer) {
144 capturer->GetCpuOveruseMetrics(&metrics);
169 ViECapturer* capturer = is.Capture(provider->Id()) local
    [all...]
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device.cc 58 scoped_ptr<webrtc::DesktopCapturer> capturer,
102 // The thread on which the capturer is running.
141 // The type of the capturer.
152 scoped_ptr<webrtc::DesktopCapturer> capturer,
156 desktop_capturer_(capturer.Pass()),
267 // If the |frame| generated by the screen capturer is inverted then we need
325 // This capturer always outputs ARGB, non-interlaced.
441 scoped_ptr<webrtc::DesktopCapturer> capturer; local
453 // The magnification capturer requires running on a dedicated UI thread.
464 capturer.reset(new webrtc::DesktopAndCursorComposer
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnectionfactory.cc 83 CreateVideoSourceParams(cricket::VideoCapturer* capturer,
85 : capturer(capturer),
88 cricket::VideoCapturer* capturer; member in struct:__anon16309::CreateVideoSourceParams
219 pdata->source = CreateVideoSource_s(pdata->capturer, pdata->constraints);
273 cricket::VideoCapturer* capturer,
276 VideoSource::Create(channel_manager_.get(), capturer, constraints));
336 cricket::VideoCapturer* capturer,
339 CreateVideoSourceParams params(capturer,
peerconnectionfactory_unittest.cc 357 cricket::FakeVideoCapturer* capturer = new cricket::FakeVideoCapturer(); local
358 // The source take ownership of |capturer|.
360 factory_->CreateVideoSource(capturer, NULL));
368 EXPECT_TRUE(capturer->CaptureFrame());
372 EXPECT_TRUE(capturer->CaptureFrame());
376 EXPECT_TRUE(capturer->CaptureFrame());
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
conductor.cc 347 cricket::VideoCapturer* capturer = NULL; local
349 capturer = dev_manager->CreateVideoCapturer(*dev_it);
350 if (capturer != NULL)
353 return capturer;
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager.cc 180 // return a fake video capturer device.
215 VideoCapturer* capturer = ConstructFakeVideoCapturer(device); local
216 if (capturer) {
217 return capturer;
220 capturer = device_video_capturer_factory_->Create(device);
221 if (!capturer) {
227 capturer->set_enable_camera_list(has_max);
229 capturer->ConstrainSupportedFormats(video_format);
231 return capturer;
236 // TODO(hellner): Throw out the creation of a file video capturer once th
239 FileVideoCapturer* capturer = new FileVideoCapturer; local
250 YuvFramesCapturer* capturer = new YuvFramesCapturer(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoengine_unittest.cc 131 cricket::FakeVideoCapturer capturer; local
132 channel_->SendFrame(&capturer, &frame);
147 cricket::FakeVideoCapturer capturer; local
148 capturer.SetScreencast(true);
149 channel_->SendFrame(&capturer, &frame);
1669 cricket::FakeVideoCapturer capturer; local
    [all...]
fakewebrtcvideoengine.h 46 #define WEBRTC_CHECK_CAPTURER(capturer) \
47 if (capturers_.find(capturer) == capturers_.end()) return -1;
49 #define WEBRTC_ASSERT_CAPTURER(capturer) \
50 ASSERT(capturers_.find(capturer) != capturers_.end());
58 // renderer for a channel or it is adding a renderer for a capturer.
344 class Capturer : public webrtc::ViEExternalCapture {
346 Capturer() : channel_id_(-1), denoising_(false),
420 for (std::map<int, Capturer*>::const_iterator iter = capturers_.begin();
422 Capturer* capturer = iter->second local
    [all...]
webrtcvideoengine.cc 2392 VideoCapturer* capturer = send_channel->video_capturer(); local
3169 VideoCapturer* capturer = send_channel->video_capturer(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java 310 VideoCapturer capturer = getVideoCapturer(); local
312 capturer, appRtcClient.videoConstraints());
329 // capturer that works, or crash if none do.
339 VideoCapturer capturer = VideoCapturer.create(name); local
340 if (capturer != null) {
342 return capturer;
347 throw new RuntimeException("Failed to open capturer");
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
peerconnection_jni.cc 2378 cricket::VideoCapturer* capturer = local
    [all...]

Completed in 826 milliseconds