Home
last modified time | relevance | path

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

123

/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dcapturemanager.h55 class VideoCapturer; variable
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,
94 sigslot::repeater2<VideoCapturer*, CaptureState> SignalCapturerStateChange;
97 typedef std::map<VideoCapturer*, VideoCapturerState*> CaptureStates;
[all …]
Dvideocapturer.cc95 VideoCapturer::VideoCapturer() : thread_(talk_base::Thread::Current()) { in VideoCapturer() function in cricket::VideoCapturer
99 VideoCapturer::VideoCapturer(talk_base::Thread* thread) : thread_(thread) { in VideoCapturer() function in cricket::VideoCapturer
103 void VideoCapturer::Construct() { in Construct()
108 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured); in Construct()
116 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const { in GetSupportedFormats()
120 bool VideoCapturer::StartCapturing(const VideoFormat& capture_format) { in StartCapturing()
132 void VideoCapturer::UpdateAspectRatio(int ratio_w, int ratio_h) { in UpdateAspectRatio()
142 void VideoCapturer::ClearAspectRatio() { in ClearAspectRatio()
148 bool VideoCapturer::Pause(bool pause) { in Pause()
189 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;
54 VideoCapturer* GetVideoCapturer() { return adapter()->video_capturer(); } in GetVideoCapturer()
80 VideoCapturerState* VideoCapturerState::Create(VideoCapturer* video_capturer) { in Create()
116 VideoCapturer* video_capturer) const { in GetHighestFormat()
164 bool CaptureManager::StartVideoCapture(VideoCapturer* video_capturer, in StartVideoCapture()
196 bool CaptureManager::StopVideoCapture(VideoCapturer* video_capturer, in StopVideoCapture()
214 VideoCapturer* video_capturer, in RestartVideoCapture()
268 bool CaptureManager::AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer()
280 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.h123 class VideoCapturer
131 VideoCapturer();
132 explicit VideoCapturer(talk_base::Thread* thread);
133 virtual ~VideoCapturer() {} in ~VideoCapturer()
250 sigslot::signal2<VideoCapturer*, CaptureState> SignalStateChange;
256 sigslot::signal2<VideoCapturer*, const CapturedFrame*,
261 sigslot::signal3<VideoCapturer*, const VideoFrame*, VideoFrame**,
264 sigslot::signal2<VideoCapturer*, const VideoFrame*,
282 void OnFrameCaptured(VideoCapturer* video_capturer,
347 DISALLOW_COPY_AND_ASSIGN(VideoCapturer);
Dfakecapturemanager.h40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer()
44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, in RemoveVideoRenderer()
Dhybridvideoengine.h46 class VideoCapturer; variable
83 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
98 void OnLocalFrame(VideoCapturer*, const VideoFrame*);
99 void OnLocalFrameFormat(VideoCapturer*, const VideoFormat*);
244 VideoCapturer* GetVideoCapturer() const { in GetVideoCapturer()
250 sigslot::repeater2<VideoCapturer*, CaptureState> SignalCaptureStateChange;
Dcapturerenderadapter.cc37 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer) in CaptureRenderAdapter()
56 VideoCapturer* video_capturer) { in Create()
98 void CaptureRenderAdapter::OnVideoFrame(VideoCapturer* capturer, in OnVideoFrame()
Dmediaengine.h55 class VideoCapturer; variable
148 virtual sigslot::repeater2<VideoCapturer*, CaptureState>&
269 virtual sigslot::repeater2<VideoCapturer*, CaptureState>&
277 sigslot::repeater2<VideoCapturer*, CaptureState> signal_state_change_;
351 sigslot::signal2<VideoCapturer*, CaptureState> SignalCaptureStateChange;
Dfilemediaengine.h103 virtual bool SetVideoCapturer(VideoCapturer* /*capturer*/) { in SetVideoCapturer() argument
106 virtual VideoCapturer* GetVideoCapturer() const { in GetVideoCapturer()
157 virtual sigslot::repeater2<VideoCapturer*, CaptureState>&
175 sigslot::repeater2<VideoCapturer*, CaptureState>
295 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer) { in SetCapturer()
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dchannelmanager.h148 VideoCapturer* capturer);
156 VideoCapturer* CreateVideoCapturer();
178 bool RegisterVideoProcessor(VideoCapturer* capturer,
180 bool UnregisterVideoProcessor(VideoCapturer* capturer,
193 bool StartVideoCapture(VideoCapturer* video_capturer,
197 bool MuteToBlackThenPause(VideoCapturer* video_capturer, bool muted);
198 bool StopVideoCapture(VideoCapturer* video_capturer,
200 bool RestartVideoCapture(VideoCapturer* video_capturer,
205 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
206 bool RemoveVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
[all …]
Dchannelmanager.cc64 CaptureStateParams(cricket::VideoCapturer* c, cricket::CaptureState s) in CaptureStateParams()
67 cricket::VideoCapturer* capturer;
601 VideoCapturer* capturer) { in IsSameCapturer()
670 VideoCapturer* ChannelManager::CreateVideoCapturer() { in CreateVideoCapturer()
678 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); in CreateVideoCapturer()
762 bool ChannelManager::RegisterVideoProcessor(VideoCapturer* capturer, in RegisterVideoProcessor()
769 bool ChannelManager::RegisterVideoProcessor_w(VideoCapturer* capturer, in RegisterVideoProcessor_w()
774 bool ChannelManager::UnregisterVideoProcessor(VideoCapturer* capturer, in UnregisterVideoProcessor()
781 bool ChannelManager::UnregisterVideoProcessor_w(VideoCapturer* capturer, in UnregisterVideoProcessor_w()
809 VideoCapturer* capturer, const VideoFormat& video_format) { in StartVideoCapture()
[all …]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
DVideoCapturer.java31 public class VideoCapturer { class
34 private VideoCapturer(long nativeVideoCapturer) { in VideoCapturer() method in VideoCapturer
38 public static VideoCapturer create(String deviceName) { in create()
43 return new VideoCapturer(nativeVideoCapturer); in create()
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dvideosource.h66 cricket::VideoCapturer* capturer,
73 virtual cricket::VideoCapturer* GetVideoCapturer() { in GetVideoCapturer()
83 cricket::VideoCapturer* capturer);
88 void OnStateChange(cricket::VideoCapturer* capturer,
93 talk_base::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.h34 class VideoCapturer; variable
66 cricket::VideoCapturer* camera) = 0;
Dpeerconnectionfactory.cc98 CreateVideoSourceParams(cricket::VideoCapturer* capturer, in CreateVideoSourceParams()
103 cricket::VideoCapturer* capturer;
270 cricket::VideoCapturer* capturer, in CreateVideoSource_s()
338 cricket::VideoCapturer* capturer, in CreateVideoSource()
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
Ddevicemanager.h50 class VideoCapturer; variable
71 virtual VideoCapturer* Create(const Device& device) = 0;
108 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const = 0;
112 virtual VideoCapturer* CreateWindowCapturer(talk_base::WindowId window) = 0;
116 virtual VideoCapturer* CreateDesktopCapturer(
171 virtual VideoCapturer* CreateVideoCapturer(const Device& device) const;
175 virtual VideoCapturer* CreateWindowCapturer(talk_base::WindowId window);
179 virtual VideoCapturer* CreateDesktopCapturer(talk_base::DesktopId desktop);
Ddevicemanager.cc76 VideoCapturer* Create(const Device& device) { in Create()
203 VideoCapturer* DeviceManager::CreateVideoCapturer(const Device& device) const { in CreateVideoCapturer()
220 VideoCapturer* capturer = device_video_capturer_factory_->Create(device); in CreateVideoCapturer()
243 VideoCapturer* DeviceManager::CreateWindowCapturer(talk_base::WindowId window) { in CreateWindowCapturer()
264 VideoCapturer* DeviceManager::CreateDesktopCapturer( in CreateDesktopCapturer()
Ddevicemanager_unittest.cc73 virtual cricket::VideoCapturer* Create(const cricket::Device& device) { in Create()
381 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateWindowCapturer( in TEST()
404 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateDesktopCapturer( in TEST()
413 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
423 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
435 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
446 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine.h63 class VideoCapturer; variable
118 sigslot::repeater2<VideoCapturer*, CaptureState> SignalCaptureStateChange;
265 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
291 void SendFrame(VideoCapturer* capturer, const VideoFrame* frame);
296 void OnLocalFrame(VideoCapturer* capturer, const VideoFrame* frame) { in OnLocalFrame()
299 void OnLocalFrameFormat(VideoCapturer* capturer, const VideoFormat* format) { in OnLocalFrameFormat()
374 int GetSendChannelNum(VideoCapturer* capturer);
410 void MaybeConnectCapturer(VideoCapturer* capturer);
413 void MaybeDisconnectCapturer(VideoCapturer* capturer);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
DRTCVideoCapturer+Internal.h34 @property(nonatomic, assign, readonly) const talk_base::scoped_ptr<cricket::VideoCapturer> &capture…
36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
DRTCVideoCapturer.mm38 talk_base::scoped_ptr<cricket::VideoCapturer>_capturer;
52 talk_base::scoped_ptr<cricket::VideoCapturer> capturer(
63 - (id)initWithCapturer:(cricket::VideoCapturer *)capturer { argument
72 - (const talk_base::scoped_ptr<cricket::VideoCapturer> &)capturer {
/external/chromium_org/content/renderer/media/
Dvideo_destination_handler_unittest.cc19 using cricket::VideoCapturer;
44 void OnStateChange(VideoCapturer* capturer, CaptureState state) { in OnStateChange()
48 void OnFrameCaptured(VideoCapturer* capturer, const CapturedFrame* frame) { in OnFrameCaptured()
Dmock_media_stream_dependency_factory.h26 virtual cricket::VideoCapturer* GetVideoCapturer() OVERRIDE;
37 void SetVideoCapturer(cricket::VideoCapturer* capturer);
47 scoped_ptr<cricket::VideoCapturer> capturer_;
141 cricket::VideoCapturer* capturer) OVERRIDE;

123