Home
last modified time | relevance | path

Searched refs:VideoCapturer (Results 1 – 25 of 77) sorted by relevance

1234

/external/webrtc/talk/media/base/
Dcapturemanager.h54 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 …]
Dvideocapturer.cc100 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 …]
Dcapturemanager.cc44 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 …]
Dcapturerenderadapter.h45 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_;
Dvideocapturer.h128 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);
Dvideocapturerfactory.h36 class VideoCapturer; variable
43 virtual VideoCapturer* Create(const Device& device) = 0;
51 virtual VideoCapturer* Create(const ScreencastId& screenid) = 0;
Dcapturerenderadapter.cc36 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer) in CaptureRenderAdapter()
55 VideoCapturer* video_capturer) { in Create()
97 void CaptureRenderAdapter::OnVideoFrame(VideoCapturer* capturer, in OnVideoFrame()
Dfakecapturemanager.h40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer()
44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, in RemoveVideoRenderer()
Dfakescreencapturerfactory.h44 virtual cricket::VideoCapturer* Create(const ScreencastId& window) { in Create()
68 void OnStateChange(cricket::VideoCapturer*, cricket::CaptureState state) { in OnStateChange() argument
/external/webrtc/webrtc/test/
Dvideo_capturer.cc20 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()
Dvideo_capturer.h23 class VideoCapturer {
25 static VideoCapturer* Create(VideoCaptureInput* input,
30 virtual ~VideoCapturer() {} in ~VideoCapturer()
36 explicit VideoCapturer(VideoCaptureInput* input);
/external/webrtc/talk/session/media/
Dchannelmanager.h141 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,
Dchannelmanager.cc65 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/
DVideoCapturer.java31 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/
Dvideosource.h68 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_;
Dremotevideocapturer_unittest.cc35 using cricket::VideoCapturer;
74 void OnStateChange(VideoCapturer* capturer, in OnStateChange()
80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) { in OnVideoFrame()
Dmediastreamprovider.h37 class VideoCapturer; variable
89 cricket::VideoCapturer* camera) = 0;
Dvideosource.cc299 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/
Ddevicemanager.h53 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;
Ddevicemanager_unittest.cc77 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()
Dfakedevicemanager.h105 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()
Ddevicemanager.cc192 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/
DRTCVideoCapturer+Internal.h34 - (cricket::VideoCapturer*)takeNativeCapturer;
36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
DRTCVideoCapturer.mm38 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/
Dwebrtcvideoengine2.h61 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_);

1234