Searched refs:video_capturer (Results 1 - 9 of 9) sorted by relevance
/external/webrtc/talk/media/base/ |
H A D | capturemanager.h | 68 virtual bool StartVideoCapture(VideoCapturer* video_capturer, 70 virtual bool StopVideoCapture(VideoCapturer* video_capturer, 77 virtual bool RestartVideoCapture(VideoCapturer* video_capturer, 82 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, 84 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, 92 bool IsCapturerRegistered(VideoCapturer* video_capturer) const; 93 bool RegisterVideoCapturer(VideoCapturer* video_capturer); 97 VideoCapturer* video_capturer); 99 VideoCapturerState* GetCaptureState(VideoCapturer* video_capturer) const; 100 CaptureRenderAdapter* GetAdapter(VideoCapturer* video_capturer) cons [all...] |
H A D | capturemanager.cc | 44 static VideoCapturerState* Create(VideoCapturer* video_capturer); 49 VideoFormat GetHighestFormat(VideoCapturer* video_capturer) const; 59 return adapter()->video_capturer(); 91 VideoCapturerState* VideoCapturerState::Create(VideoCapturer* video_capturer) { argument 92 CaptureRenderAdapter* adapter = CaptureRenderAdapter::Create(video_capturer); 129 VideoCapturer* video_capturer) const { 183 bool CaptureManager::StartVideoCapture(VideoCapturer* video_capturer, argument 189 if (!video_capturer) { 192 VideoCapturerState* capture_state = GetCaptureState(video_capturer); 203 if (!RegisterVideoCapturer(video_capturer)) { 216 StopVideoCapture(VideoCapturer* video_capturer, const VideoFormat& format) argument 234 RestartVideoCapture( VideoCapturer* video_capturer, const VideoFormat& previous_format, const VideoFormat& desired_format, CaptureManager::RestartOptions options) argument 290 AddVideoRenderer(VideoCapturer* video_capturer, VideoRenderer* video_renderer) argument 303 RemoveVideoRenderer(VideoCapturer* video_capturer, VideoRenderer* video_renderer) argument 321 RegisterVideoCapturer(VideoCapturer* video_capturer) argument 336 VideoCapturer* video_capturer = capture_state->GetVideoCapturer(); local 358 StartWithBestCaptureFormat( VideoCapturerState* capture_state, VideoCapturer* video_capturer) argument [all...] |
H A D | fakecapturemanager.h | 40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, argument 44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, argument
|
H A D | capturerenderadapter.h | 51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); 57 VideoCapturer* video_capturer() { return video_capturer_; } function in class:cricket::CaptureRenderAdapter 73 explicit CaptureRenderAdapter(VideoCapturer* video_capturer);
|
H A D | capturerenderadapter.cc | 36 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer) argument 37 : video_capturer_(video_capturer) { 55 VideoCapturer* video_capturer) { 56 if (!video_capturer) { 59 CaptureRenderAdapter* return_value = new CaptureRenderAdapter(video_capturer); 54 Create( VideoCapturer* video_capturer) argument
|
H A D | videocapturer.h | 291 void OnFrameCaptured(VideoCapturer* video_capturer,
|
H A D | videoengine_unittest.h | 107 cricket::VideoCapturer* video_capturer = T::GetVideoCapturer(); local 109 video_capturer->SignalVideoFrame.connect(this, 112 video_capturer->SignalVideoFrame.disconnect(this); 1316 cricket::FakeVideoCapturer video_capturer; local 1317 video_capturer.Start( 1322 EXPECT_TRUE(channel_->SetCapturer(kSsrc, &video_capturer)); 1329 EXPECT_TRUE(video_capturer.CaptureFrame()); 1336 EXPECT_TRUE(video_capturer.CaptureFrame()); 1343 EXPECT_TRUE(video_capturer.CaptureFrame()); 1349 EXPECT_TRUE(video_capturer [all...] |
/external/webrtc/talk/session/media/ |
H A D | channelmanager.h | 147 bool StartVideoCapture(VideoCapturer* video_capturer, 151 bool MuteToBlackThenPause(VideoCapturer* video_capturer, bool muted); 152 bool StopVideoCapture(VideoCapturer* video_capturer, 154 bool RestartVideoCapture(VideoCapturer* video_capturer,
|
H A D | channelmanager.cc | 477 VideoCapturer* video_capturer, bool muted) { 482 Bind(&VideoCapturer::MuteToBlackThenPause, video_capturer, muted)); 494 VideoCapturer* video_capturer, 500 video_capturer, previous_format, desired_format, options)); 476 MuteToBlackThenPause( VideoCapturer* video_capturer, bool muted) argument 493 RestartVideoCapture( VideoCapturer* video_capturer, const VideoFormat& previous_format, const VideoFormat& desired_format, CaptureManager::RestartOptions options) argument
|
Completed in 283 milliseconds