/external/webrtc/talk/media/base/ |
D | capturemanager.h | 54 class VideoCapturer; variable 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, 87 sigslot::repeater2<VideoCapturer*, CaptureState> SignalCapturerStateChange; 90 typedef std::map<VideoCapturer*, VideoCapturerState*> CaptureStates; 92 bool IsCapturerRegistered(VideoCapturer* video_capturer) const; 93 bool RegisterVideoCapturer(VideoCapturer* video_capturer); [all …]
|
D | videocapturer.cc | 100 VideoCapturer::VideoCapturer() in VideoCapturer() function in cricket::VideoCapturer 108 VideoCapturer::VideoCapturer(rtc::Thread* thread) in VideoCapturer() function in cricket::VideoCapturer 116 void VideoCapturer::Construct() { in Construct() 121 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured); in Construct() 139 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const { in GetSupportedFormats() 143 bool VideoCapturer::StartCapturing(const VideoFormat& capture_format) { in StartCapturing() 156 void VideoCapturer::UpdateAspectRatio(int ratio_w, int ratio_h) { in UpdateAspectRatio() 166 void VideoCapturer::ClearAspectRatio() { in ClearAspectRatio() 172 bool VideoCapturer::Pause(bool pause) { in Pause() 213 bool VideoCapturer::Restart(const VideoFormat& capture_format) { in Restart() [all …]
|
D | capturemanager.cc | 44 static VideoCapturerState* Create(VideoCapturer* video_capturer); 49 VideoFormat GetHighestFormat(VideoCapturer* video_capturer) const; 57 VideoCapturer* GetVideoCapturer() { in GetVideoCapturer() 91 VideoCapturerState* VideoCapturerState::Create(VideoCapturer* video_capturer) { in Create() 129 VideoCapturer* video_capturer) const { in GetHighestFormat() 183 bool CaptureManager::StartVideoCapture(VideoCapturer* video_capturer, in StartVideoCapture() 216 bool CaptureManager::StopVideoCapture(VideoCapturer* video_capturer, in StopVideoCapture() 235 VideoCapturer* video_capturer, in RestartVideoCapture() 290 bool CaptureManager::AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer() 303 bool CaptureManager::RemoveVideoRenderer(VideoCapturer* video_capturer, in RemoveVideoRenderer() [all …]
|
D | capturerenderadapter.h | 45 class VideoCapturer; variable 51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer); 57 VideoCapturer* video_capturer() { return video_capturer_; } in video_capturer() 73 explicit CaptureRenderAdapter(VideoCapturer* video_capturer); 77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame); 84 VideoCapturer* video_capturer_;
|
D | videocapturer.h | 128 class VideoCapturer 134 VideoCapturer(); 135 explicit VideoCapturer(rtc::Thread* thread); 136 virtual ~VideoCapturer() {} in ~VideoCapturer() 252 sigslot::signal2<VideoCapturer*, CaptureState> SignalStateChange; 258 sigslot::signal2<VideoCapturer*, const CapturedFrame*, 262 sigslot::signal2<VideoCapturer*, const VideoFrame*, 291 void OnFrameCaptured(VideoCapturer* video_capturer, 380 RTC_DISALLOW_COPY_AND_ASSIGN(VideoCapturer);
|
D | videocapturerfactory.h | 36 class VideoCapturer; variable 43 virtual VideoCapturer* Create(const Device& device) = 0; 51 virtual VideoCapturer* Create(const ScreencastId& screenid) = 0;
|
D | capturerenderadapter.cc | 36 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer) in CaptureRenderAdapter() 55 VideoCapturer* video_capturer) { in Create() 97 void CaptureRenderAdapter::OnVideoFrame(VideoCapturer* capturer, in OnVideoFrame()
|
D | fakecapturemanager.h | 40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer() 44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, in RemoveVideoRenderer()
|
D | fakescreencapturerfactory.h | 44 virtual cricket::VideoCapturer* Create(const ScreencastId& window) { in Create() 68 void OnStateChange(cricket::VideoCapturer*, cricket::CaptureState state) { in OnStateChange() argument
|
/external/webrtc/webrtc/test/ |
D | video_capturer.cc | 20 class NullCapturer : public VideoCapturer { 22 NullCapturer() : VideoCapturer(NULL) {} in NullCapturer() 29 VideoCapturer::VideoCapturer(VideoCaptureInput* input) : input_(input) { in VideoCapturer() function in webrtc::test::VideoCapturer 32 VideoCapturer* VideoCapturer::Create(VideoCaptureInput* input, in Create()
|
D | video_capturer.h | 23 class VideoCapturer { 25 static VideoCapturer* Create(VideoCaptureInput* input, 30 virtual ~VideoCapturer() {} in ~VideoCapturer() 36 explicit VideoCapturer(VideoCaptureInput* input);
|
/external/webrtc/talk/session/media/ |
D | channelmanager.h | 141 VideoCapturer* capturer) const; 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, 159 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer); 160 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer); 177 sigslot::signal2<VideoCapturer*, CaptureState> SignalVideoCaptureStateChange; 210 void OnVideoCaptureStateChange(VideoCapturer* capturer, 213 VideoCapturer* capturer,
|
D | channelmanager.cc | 65 CaptureStateParams(cricket::VideoCapturer* c, cricket::CaptureState s) in CaptureStateParams() 68 cricket::VideoCapturer* capturer; 449 VideoCapturer* capturer) const { in GetSupportedFormats() 458 VideoCapturer* capturer, in GetSupportedFormats_w() 470 VideoCapturer* capturer, const VideoFormat& video_format) { in StartVideoCapture() 477 VideoCapturer* video_capturer, bool muted) { in MuteToBlackThenPause() 482 Bind(&VideoCapturer::MuteToBlackThenPause, video_capturer, muted)); in MuteToBlackThenPause() 487 VideoCapturer* capturer, const VideoFormat& video_format) { in StopVideoCapture() 494 VideoCapturer* video_capturer, in RestartVideoCapture() 504 VideoCapturer* capturer, VideoRenderer* renderer) { in AddVideoRenderer() [all …]
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
D | VideoCapturer.java | 31 public class VideoCapturer { class 34 protected VideoCapturer() { in VideoCapturer() method in VideoCapturer 37 public static VideoCapturer create(String deviceName) { in create() 40 return (VideoCapturer) (capturer); in create()
|
/external/webrtc/talk/app/webrtc/ |
D | videosource.h | 68 cricket::VideoCapturer* capturer, 78 virtual cricket::VideoCapturer* GetVideoCapturer() { in GetVideoCapturer() 92 cricket::VideoCapturer* capturer, 98 void OnStateChange(cricket::VideoCapturer* capturer, 103 rtc::scoped_ptr<cricket::VideoCapturer> video_capturer_;
|
D | remotevideocapturer_unittest.cc | 35 using cricket::VideoCapturer; 74 void OnStateChange(VideoCapturer* capturer, in OnStateChange() 80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) { in OnVideoFrame()
|
D | mediastreamprovider.h | 37 class VideoCapturer; variable 89 cricket::VideoCapturer* camera) = 0;
|
D | videosource.cc | 299 explicit FrameInputWrapper(cricket::VideoCapturer* capturer) in FrameInputWrapper() 320 cricket::VideoCapturer* capturer_; 331 cricket::VideoCapturer* capturer, in Create() 343 cricket::VideoCapturer* capturer, in VideoSource() 457 void VideoSource::OnStateChange(cricket::VideoCapturer* capturer, in OnStateChange()
|
/external/webrtc/talk/media/devices/ |
D | devicemanager.h | 53 class VideoCapturer; variable 97 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const = 0; 103 virtual VideoCapturer* CreateScreenCapturer( 164 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const; 170 virtual VideoCapturer* CreateScreenCapturer( 197 VideoCapturer* MaybeConstructFakeVideoCapturer(const Device& device) const;
|
D | devicemanager_unittest.cc | 77 virtual cricket::VideoCapturer* Create(const cricket::Device& device) { in Create() 87 virtual cricket::VideoCapturer* Create( in Create() 399 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateScreenCapturer( in TEST() 423 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateScreenCapturer( in TEST() 432 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F() 442 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F() 454 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F() 465 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
|
D | fakedevicemanager.h | 105 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const { in CreateVideoCapturer() 108 virtual VideoCapturer* CreateScreenCapturer( in CreateScreenCapturer() 126 virtual VideoCapturer* CreateWindowCapturer(rtc::WindowId window) { in CreateWindowCapturer() 144 virtual VideoCapturer* CreateDesktopCapturer(rtc::DesktopId desktop) { in CreateDesktopCapturer()
|
D | devicemanager.cc | 192 VideoCapturer* DeviceManager::CreateVideoCapturer(const Device& device) const { in CreateVideoCapturer() 193 VideoCapturer* capturer = MaybeConstructFakeVideoCapturer(device); in CreateVideoCapturer() 216 VideoCapturer* DeviceManager::MaybeConstructFakeVideoCapturer( in MaybeConstructFakeVideoCapturer() 255 VideoCapturer* DeviceManager::CreateScreenCapturer( in CreateScreenCapturer()
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCVideoCapturer+Internal.h | 34 - (cricket::VideoCapturer*)takeNativeCapturer; 36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
|
D | RTCVideoCapturer.mm | 38 rtc::scoped_ptr<cricket::VideoCapturer> _capturer; 52 rtc::scoped_ptr<cricket::VideoCapturer> capturer( 63 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer { argument 70 - (cricket::VideoCapturer*)takeNativeCapturer {
|
/external/webrtc/talk/media/webrtc/ |
D | webrtcvideoengine2.h | 61 class VideoCapturer; variable 177 bool SetCapturer(uint32_t ssrc, VideoCapturer* capturer) override; 259 void InputFrame(VideoCapturer* capturer, const VideoFrame* frame); 260 bool SetCapturer(VideoCapturer* capturer); 369 VideoCapturer* capturer_ GUARDED_BY(lock_); 510 std::map<uint32_t, VideoCapturer*> capturers_ GUARDED_BY(capturer_crit_);
|