Home
last modified time | relevance | path

Searched refs:video_capturer_ (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dcapturemanager_unittest.cc64 video_capturer_.ResetSupportedFormats(formats); in PopulateSupportedFormats()
82 cricket::FakeVideoCapturer video_capturer_; member in CaptureManagerTest
96 EXPECT_FALSE(capture_manager_.AddVideoRenderer(&video_capturer_, in TEST_F()
98 EXPECT_FALSE(capture_manager_.AddVideoProcessor(&video_capturer_, in TEST_F()
103 EXPECT_FALSE(capture_manager_.StopVideoCapture(&video_capturer_, in TEST_F()
105 EXPECT_TRUE(capture_manager_.StartVideoCapture(&video_capturer_, in TEST_F()
109 EXPECT_FALSE(capture_manager_.AddVideoRenderer(&video_capturer_, NULL)); in TEST_F()
110 EXPECT_FALSE(capture_manager_.RemoveVideoRenderer(&video_capturer_, in TEST_F()
112 EXPECT_FALSE(capture_manager_.AddVideoProcessor(&video_capturer_, in TEST_F()
114 EXPECT_FALSE(capture_manager_.RemoveVideoProcessor(&video_capturer_, in TEST_F()
[all …]
Dcapturerenderadapter.h57 VideoCapturer* video_capturer() { return video_capturer_; } in video_capturer()
84 VideoCapturer* video_capturer_; variable
Dcapturerenderadapter.cc38 : video_capturer_(video_capturer) { in CaptureRenderAdapter()
93 video_capturer_->SignalVideoFrame.connect( in Init()
Dvideoengine_unittest.h482 rtc::scoped_ptr<cricket::FakeVideoCapturer> video_capturer_; variable
506 video_capturer_.reset(CreateFakeVideoCapturer()); in SetUp()
510 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(format)); in SetUp()
511 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in SetUp()
573 if (video_capturer_) { in SetOneCodec()
574 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format)); in SetOneCodec()
610 return video_capturer_.get() && in SendFrame()
611 video_capturer_->CaptureFrame(); in SendFrame()
636 if (!video_capturer_.get()) return false; in SendCustomVideoFrame()
637 return video_capturer_->CaptureCustomFrame(w, h, cricket::FOURCC_I420); in SendCustomVideoFrame()
[all …]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dvideosource.cc361 video_capturer_(capturer), in VideoSource()
368 channel_manager_->StopVideoCapture(video_capturer_.get(), format_); in ~VideoSource()
376 if (video_capturer_->GetSupportedFormats() && in Initialize()
377 video_capturer_->GetSupportedFormats()->size() > 0) { in Initialize()
378 formats = *video_capturer_->GetSupportedFormats(); in Initialize()
379 } else if (video_capturer_->IsScreencast()) { in Initialize()
399 if (video_capturer_->IsScreencast()) { in Initialize()
428 if (!channel_manager_->StartVideoCapture(video_capturer_.get(), format_)) { in Initialize()
439 frame_input_.reset(new FrameInputWrapper(video_capturer_.get())); in FrameInput()
445 channel_manager_->AddVideoRenderer(video_capturer_.get(), output); in AddSink()
[all …]
Dvideosource.h74 return video_capturer_.get(); in GetVideoCapturer()
93 rtc::scoped_ptr<cricket::VideoCapturer> video_capturer_; variable
/external/chromium_org/remoting/host/
Dipc_desktop_environment_unittest.cc205 scoped_ptr<webrtc::DesktopCapturer> video_capturer_; member in remoting::IpcDesktopEnvironmentTest
294 video_capturer_ = in SetUp()
367 video_capturer_.reset(); in DeleteDesktopEnvironment()
460 video_capturer_->Start(&desktop_capturer_callback_); in TEST_F()
473 video_capturer_->Capture(webrtc::DesktopRegion()); in TEST_F()
489 video_capturer_->Start(&desktop_capturer_callback_); in TEST_F()
522 video_capturer_->Start(&desktop_capturer_callback_); in TEST_F()
553 video_capturer_->Start(&desktop_capturer_callback_); in TEST_F()
584 video_capturer_->Start(&desktop_capturer_callback_); in TEST_F()
614 video_capturer_->Start(&desktop_capturer_callback_); in TEST_F()
[all …]
Ddesktop_session_agent.cc218 DCHECK(!video_capturer_); in ~DesktopSessionAgent()
260 DCHECK(!video_capturer_); in OnStartSessionAgent()
303 video_capturer_ = desktop_environment_->CreateVideoCapturer(); in OnStartSessionAgent()
449 video_capturer_->Capture(webrtc::DesktopRegion()); in OnCaptureFrame()
563 if (video_capturer_) { in StartVideoCapturerAndMouseMonitor()
564 video_capturer_->Start(this); in StartVideoCapturerAndMouseMonitor()
575 video_capturer_.reset(); in StopVideoCapturerAndMouseMonitor()
Ddesktop_session_agent.h219 scoped_ptr<webrtc::DesktopCapturer> video_capturer_; variable
Ddesktop_session_proxy.h203 base::WeakPtr<IpcVideoFrameCapturer> video_capturer_; variable
Ddesktop_session_proxy.cc324 video_capturer_ = video_capturer; in SetVideoCapturer()
549 base::Bind(&IpcVideoFrameCapturer::OnCaptureCompleted, video_capturer_, in PostCaptureCompleted()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine.cc602 video_capturer_(NULL), in WebRtcVideoChannelSendInfo()
669 return video_capturer_; in video_capturer()
673 if (video_capturer == video_capturer_) { in set_video_capturer()
688 video_capturer_ = video_capturer; in set_video_capturer()
712 if (!video_capturer_) { in video_adapter()
715 return video_capturer_->video_adapter(); in video_adapter()
718 if (!video_capturer_) { in video_adapter()
721 return video_capturer_->video_adapter(); in video_adapter()
740 if (!video_capturer_) { in UpdateAdapterCpuOptions()
753 CoordinatedVideoAdapter* video_adapter = video_capturer_->video_adapter(); in UpdateAdapterCpuOptions()
[all …]
Dwebrtcvideoengine2_unittest.cc588 video_capturer_.reset(new cricket::FakeVideoCapturer); in TEST_F()
590 video_capturer_->GetSupportedFormats(); in TEST_F()
592 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format_hd)); in TEST_F()
593 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in TEST_F()
Dwebrtcvideoengine_unittest.cc2421 video_capturer_.reset(new cricket::FakeVideoCapturer); in TEST_F()
2423 video_capturer_->GetSupportedFormats(); in TEST_F()
2425 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format_hd)); in TEST_F()
2426 EXPECT_TRUE(channel_->SetCapturer(kSsrc, video_capturer_.get())); in TEST_F()