/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
D | capturemanager.cc | 44 static VideoCapturerState* Create(VideoCapturer* video_capturer); 49 VideoFormat GetHighestFormat(VideoCapturer* video_capturer) const; 54 VideoCapturer* GetVideoCapturer() { return adapter()->video_capturer(); } in GetVideoCapturer() 80 VideoCapturerState* VideoCapturerState::Create(VideoCapturer* video_capturer) { in Create() argument 81 CaptureRenderAdapter* adapter = CaptureRenderAdapter::Create(video_capturer); in Create() 116 VideoCapturer* video_capturer) const { in GetHighestFormat() 164 bool CaptureManager::StartVideoCapture(VideoCapturer* video_capturer, in StartVideoCapture() argument 169 if (!video_capturer) { in StartVideoCapture() 172 VideoCapturerState* capture_state = GetCaptureState(video_capturer); in StartVideoCapture() 183 if (!RegisterVideoCapturer(video_capturer)) { in StartVideoCapture() [all …]
|
D | capturemanager.h | 70 virtual bool StartVideoCapture(VideoCapturer* video_capturer, 72 virtual bool StopVideoCapture(VideoCapturer* video_capturer, 79 virtual bool RestartVideoCapture(VideoCapturer* video_capturer, 84 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, 86 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, 89 virtual bool AddVideoProcessor(VideoCapturer* video_capturer, 91 virtual bool RemoveVideoProcessor(VideoCapturer* video_capturer, 99 bool IsCapturerRegistered(VideoCapturer* video_capturer) const; 100 bool RegisterVideoCapturer(VideoCapturer* video_capturer); 104 VideoCapturer* video_capturer); [all …]
|
D | capturerenderadapter.cc | 37 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer) in CaptureRenderAdapter() argument 38 : video_capturer_(video_capturer) { in CaptureRenderAdapter() 56 VideoCapturer* video_capturer) { in Create() argument 57 if (!video_capturer) { in Create() 60 CaptureRenderAdapter* return_value = new CaptureRenderAdapter(video_capturer); in Create()
|
D | capturerenderadapter.h | 51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); 57 VideoCapturer* video_capturer() { return video_capturer_; } in video_capturer() function 73 explicit CaptureRenderAdapter(VideoCapturer* video_capturer);
|
D | fakecapturemanager.h | 40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer() argument 44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, in RemoveVideoRenderer() argument
|
D | videoengine_unittest.h | 107 cricket::VideoCapturer* video_capturer = T::GetVideoCapturer(); in set_has_senders() local 109 video_capturer->SignalVideoFrame.connect(this, in set_has_senders() 112 video_capturer->SignalVideoFrame.disconnect(this); in set_has_senders() 1677 cricket::FakeVideoCapturer video_capturer; in MuteStream() local 1678 video_capturer.Start( in MuteStream() 1683 EXPECT_TRUE(channel_->SetCapturer(kSsrc, &video_capturer)); in MuteStream() 1692 EXPECT_TRUE(video_capturer.CaptureFrame()); in MuteStream() 1700 EXPECT_TRUE(video_capturer.CaptureFrame()); in MuteStream() 1708 EXPECT_TRUE(video_capturer.CaptureFrame()); in MuteStream() 1715 EXPECT_TRUE(video_capturer.CaptureFrame()); in MuteStream()
|
D | videocapturer.h | 308 void OnFrameCaptured(VideoCapturer* video_capturer,
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
D | channelmanager.h | 198 bool StartVideoCapture(VideoCapturer* video_capturer, 202 bool MuteToBlackThenPause(VideoCapturer* video_capturer, bool muted); 203 bool StopVideoCapture(VideoCapturer* video_capturer, 205 bool RestartVideoCapture(VideoCapturer* video_capturer,
|
D | channelmanager.cc | 833 VideoCapturer* video_capturer, bool muted) { in MuteToBlackThenPause() argument 838 Bind(&VideoCapturer::MuteToBlackThenPause, video_capturer, muted)); in MuteToBlackThenPause() 850 VideoCapturer* video_capturer, in RestartVideoCapture() argument 856 video_capturer, previous_format, desired_format, options)); in RestartVideoCapture()
|
/external/chromium_org/remoting/host/ |
D | client_session.cc | 444 scoped_ptr<webrtc::DesktopCapturer> video_capturer = in ResetVideoPipeline() local 446 extension_manager_->OnCreateVideoCapturer(&video_capturer); in ResetVideoPipeline() 452 if (!video_capturer || !video_encoder) in ResetVideoPipeline() 460 video_capturer.Pass(), in ResetVideoPipeline()
|
D | desktop_session_proxy.h | 116 const base::WeakPtr<IpcVideoFrameCapturer> video_capturer);
|
D | desktop_session_proxy.cc | 321 const base::WeakPtr<IpcVideoFrameCapturer> video_capturer) { in SetVideoCapturer() argument 324 video_capturer_ = video_capturer; in SetVideoCapturer()
|
/external/chromium_org/third_party/webrtc/test/ |
D | webrtc_test_common.gyp | 47 'video_capturer.cc', 48 'video_capturer.h',
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideoengine.cc | 668 VideoCapturer* video_capturer() { in video_capturer() function in cricket::WebRtcVideoChannelSendInfo 671 void set_video_capturer(VideoCapturer* video_capturer, in set_video_capturer() argument 673 if (video_capturer == video_capturer_) { in set_video_capturer() 688 video_capturer_ = video_capturer; in set_video_capturer() 691 if (!video_capturer) { in set_video_capturer() 2311 if (send_channel->video_capturer() == capturer) { in GetSendChannelNum() 2330 MaybeDisconnectCapturer(send_channel->video_capturer()); in DeleteSendChannel() 2378 VideoCapturer* capturer = send_channel->video_capturer(); in RemoveCapturer() 2459 VideoCapturer* video_capturer = send_channel->video_capturer(); in GetStats() local 2460 if (video_capturer) { in GetStats() [all …]
|