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);
55 scoped_refptr<WebRtcAudioCapturer> capturer; local
60 capturer = capturer_;
90 if (new_volume != 0 && capturer.get() && !webaudio_source_.get()) {
93 capturer->SetVolume(new_volume);
196 // capturer as its sink otherwise two streams in different clock will be
rtc_peer_connection_handler_unittest.cc 290 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;
222 // Add the capturer to the WebRtcAudioDeviceImpl since it needs some hardware
223 // information from the capturer.
423 // Remove the capturer object from the WebRtcAudioDeviceImpl.
  /external/chromium_org/third_party/libjingle/source/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...]
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager_unittest.cc 202 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
206 GetCapturerFrameSize(VideoCapturer* capturer) : width(0), height(0) {
207 capturer->SignalVideoFrame.connect(this,
209 static_cast<FakeVideoCapturer*>(capturer)->CaptureFrame();
220 // A capturer created before the default encoder config is set will have no
222 VideoCapturer* capturer = cm_->CreateVideoCapturer(); local
223 ASSERT_TRUE(capturer != NULL);
224 EXPECT_EQ(CS_RUNNING, capturer->Start(format));
225 GetCapturerFrameSize size(capturer);
228 delete capturer;
    [all...]
call.h 262 StartedCapture(cricket::VideoCapturer* capturer,
264 capturer(capturer),
267 cricket::VideoCapturer* capturer; member in struct:cricket::Call::StartedCapture
channelmanager.cc 65 : capturer(c),
67 cricket::VideoCapturer* capturer; member in struct:cricket::CaptureStateParams
314 LOG(LS_WARNING) << "failed to delete video capturer";
626 VideoCapturer* capturer) {
627 if (capturer == NULL) {
634 return capturer->GetId() == device.id;
703 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); local
704 if (capturer && default_video_encoder_config_.max_codec.id != 0) {
708 capturer->UpdateAspectRatio(
712 return capturer;
    [all...]
call.cc 476 // The capturer pretty much ignore this, but just in case we give it
499 VideoCapturer* capturer = session_client_->channel_manager()-> local
501 if (!capturer) {
502 LOG(LS_WARNING) << "Could not create screencast capturer.";
506 if (!video_channel->AddScreencast(ssrc, capturer)) {
507 delete capturer;
508 LOG(LS_WARNING) << "Could not add screencast capturer.";
514 capturer, format)) {
520 if (!video_channel->SetCapturer(ssrc, capturer)) {
523 capturer, ScreencastFormatFromFps(fps))
591 VideoCapturer* capturer = screencast_iter->second.capturer; local
    [all...]
channel.cc 1969 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);
138 ViECapturer* capturer = is.Capture(provider->Id()); local
139 if (capturer) {
140 capturer->GetCpuOveruseMetrics(metrics);
  /external/chromium_org/content/browser/media/capture/
desktop_capture_device.cc 54 scoped_ptr<webrtc::DesktopCapturer> capturer,
123 // The type of the capturer.
137 scoped_ptr<webrtc::DesktopCapturer> capturer,
140 desktop_capturer_(capturer.Pass()),
169 // This capturer always outputs ARGB, non-interlaced.
267 // If the |frame| generated by the screen capturer is inverted then we need
400 scoped_ptr<webrtc::DesktopCapturer> capturer; local
410 capturer.reset(new webrtc::DesktopAndCursorComposer(
423 capturer.reset(new webrtc::DesktopAndCursorComposer(
437 if (capturer)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnectionfactory.cc 84 CreateVideoSourceParams(cricket::VideoCapturer* capturer,
86 : capturer(capturer),
89 cricket::VideoCapturer* capturer; member in struct:__anon17257::CreateVideoSourceParams
220 pdata->source = CreateVideoSource_s(pdata->capturer, pdata->constraints);
274 cricket::VideoCapturer* capturer,
277 VideoSource::Create(channel_manager_.get(), capturer, constraints));
337 cricket::VideoCapturer* capturer,
340 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/webrtc/
webrtcvideoengine_unittest.cc 122 cricket::FakeVideoCapturer capturer; local
123 channel_->SendFrame(&capturer, &frame);
138 cricket::FakeVideoCapturer capturer; local
139 capturer.SetScreencast(true);
140 channel_->SendFrame(&capturer, &frame);
806 // Test that channel connects and disconnects external capturer correctly.
815 // Delete the channel should disconnect the capturer.
1645 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.
345 class Capturer : public webrtc::ViEExternalCapture {
347 Capturer() : channel_id_(-1), denoising_(false),
421 for (std::map<int, Capturer*>::const_iterator iter = capturers_.begin();
423 Capturer* capturer = iter->second local
    [all...]
webrtcvideoengine.cc 2378 VideoCapturer* capturer = send_channel->video_capturer(); local
3112 VideoCapturer* capturer = send_channel->video_capturer(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java 335 VideoCapturer capturer = getVideoCapturer(); local
337 capturer, appRtcClient.videoConstraints());
354 // capturer that works, or crash if none do.
364 VideoCapturer capturer = VideoCapturer.create(name); local
365 if (capturer != null) {
367 return capturer;
372 throw new RuntimeException("Failed to open capturer");
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
peerconnection_jni.cc 3189 cricket::VideoCapturer* capturer = local
    [all...]

Completed in 388 milliseconds