Home
last modified time | relevance | path

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

1234

/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 …]
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 …]
Dvideocapturer.cc102 VideoCapturer::VideoCapturer() in VideoCapturer() function in cricket::VideoCapturer
110 VideoCapturer::VideoCapturer(rtc::Thread* thread) in VideoCapturer() function in cricket::VideoCapturer
118 void VideoCapturer::Construct() { in Construct()
123 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured); in Construct()
143 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const { in GetSupportedFormats()
147 bool VideoCapturer::StartCapturing(const VideoFormat& capture_format) { in StartCapturing()
160 void VideoCapturer::UpdateAspectRatio(int ratio_w, int ratio_h) { in UpdateAspectRatio()
170 void VideoCapturer::ClearAspectRatio() { in ClearAspectRatio()
176 bool VideoCapturer::Pause(bool pause) { in Pause()
217 bool VideoCapturer::Restart(const VideoFormat& capture_format) { in Restart()
[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.h127 class VideoCapturer
135 VideoCapturer();
136 explicit VideoCapturer(rtc::Thread* thread);
137 virtual ~VideoCapturer() {} in ~VideoCapturer()
254 sigslot::signal2<VideoCapturer*, CaptureState> SignalStateChange;
260 sigslot::signal2<VideoCapturer*, const CapturedFrame*,
264 sigslot::signal2<VideoCapturer*, const VideoFrame*,
308 void OnFrameCaptured(VideoCapturer* video_capturer,
405 DISALLOW_COPY_AND_ASSIGN(VideoCapturer);
Dvideocapturerfactory.h35 class VideoCapturer; variable
42 virtual VideoCapturer* Create(const Device& device) = 0;
50 virtual VideoCapturer* Create(const ScreencastId& screenid) = 0;
Dfakecapturemanager.h40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer, in AddVideoRenderer()
44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer, in RemoveVideoRenderer()
Dcapturerenderadapter.cc37 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer) in CaptureRenderAdapter()
56 VideoCapturer* video_capturer) { in Create()
98 void CaptureRenderAdapter::OnVideoFrame(VideoCapturer* capturer, in OnVideoFrame()
Dmediaengine.h57 class VideoCapturer; variable
150 virtual sigslot::repeater2<VideoCapturer*, CaptureState>&
279 virtual sigslot::repeater2<VideoCapturer*, CaptureState>&
287 sigslot::repeater2<VideoCapturer*, CaptureState> signal_state_change_;
361 sigslot::signal2<VideoCapturer*, CaptureState> SignalCaptureStateChange;
Dfakescreencapturerfactory.h44 virtual cricket::VideoCapturer* Create(const ScreencastId& window) { in Create()
68 void OnStateChange(cricket::VideoCapturer*, cricket::CaptureState state) { in OnStateChange() argument
/external/chromium_org/third_party/webrtc/test/
Dvideo_capturer.cc20 class NullCapturer : public VideoCapturer {
22 NullCapturer() : VideoCapturer(NULL) {} in NullCapturer()
29 VideoCapturer::VideoCapturer(VideoSendStreamInput* input) in VideoCapturer() function in webrtc::test::VideoCapturer
32 VideoCapturer* VideoCapturer::Create(VideoSendStreamInput* input, in Create()
Dvideo_capturer.h23 class VideoCapturer {
25 static VideoCapturer* Create(VideoSendStreamInput* input,
30 virtual ~VideoCapturer() {} in ~VideoCapturer()
36 explicit VideoCapturer(VideoSendStreamInput* input);
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dchannelmanager.h153 VideoCapturer* capturer);
161 VideoCapturer* CreateVideoCapturer();
163 VideoCapturer* CreateScreenCapturer(const ScreencastId& screenid);
183 bool RegisterVideoProcessor(VideoCapturer* capturer,
185 bool UnregisterVideoProcessor(VideoCapturer* capturer,
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,
210 bool AddVideoRenderer(VideoCapturer* capturer, VideoRenderer* renderer);
[all …]
Dchannelmanager.cc64 CaptureStateParams(cricket::VideoCapturer* c, cricket::CaptureState s) in CaptureStateParams()
67 cricket::VideoCapturer* capturer;
626 VideoCapturer* capturer) { in IsSameCapturer()
695 VideoCapturer* ChannelManager::CreateVideoCapturer() { in CreateVideoCapturer()
703 VideoCapturer* capturer = device_manager_->CreateVideoCapturer(device); in CreateVideoCapturer()
715 VideoCapturer* ChannelManager::CreateScreenCapturer( in CreateScreenCapturer()
779 bool ChannelManager::RegisterVideoProcessor(VideoCapturer* capturer, in RegisterVideoProcessor()
786 bool ChannelManager::RegisterVideoProcessor_w(VideoCapturer* capturer, in RegisterVideoProcessor_w()
791 bool ChannelManager::UnregisterVideoProcessor(VideoCapturer* capturer, in UnregisterVideoProcessor()
798 bool ChannelManager::UnregisterVideoProcessor_w(VideoCapturer* capturer, in UnregisterVideoProcessor_w()
[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 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.h34 class VideoCapturer; variable
70 cricket::VideoCapturer* camera) = 0;
/external/chromium_org/third_party/libjingle/source/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.cc76 virtual cricket::VideoCapturer* Create(const cricket::Device& device) { in Create()
86 virtual cricket::VideoCapturer* Create( in Create()
398 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateScreenCapturer( in TEST()
422 scoped_ptr<cricket::VideoCapturer> capturer(dm->CreateScreenCapturer( in TEST()
431 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
441 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
453 scoped_ptr<cricket::VideoCapturer> capturer( in TEST_F()
464 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()
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine.h69 class VideoCapturer; variable
121 sigslot::repeater2<VideoCapturer*, CaptureState> SignalCaptureStateChange;
266 virtual bool SetCapturer(uint32 ssrc, VideoCapturer* capturer);
295 void SendFrame(VideoCapturer* capturer, const VideoFrame* frame);
300 void OnLocalFrame(VideoCapturer* capturer, const VideoFrame* frame) { in OnLocalFrame()
303 void OnLocalFrameFormat(VideoCapturer* capturer, const VideoFormat* format) { in OnLocalFrameFormat()
401 int GetSendChannelNum(VideoCapturer* capturer);
433 void MaybeConnectCapturer(VideoCapturer* capturer);
436 void MaybeDisconnectCapturer(VideoCapturer* capturer);
/external/chromium_org/third_party/libjingle/source/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/chromium_org/content/renderer/media/webrtc/
Dmock_peer_connection_dependency_factory.h45 virtual cricket::VideoCapturer* GetVideoCapturer() OVERRIDE;
56 void SetVideoCapturer(cricket::VideoCapturer* capturer);
71 scoped_ptr<cricket::VideoCapturer> capturer_;
189 cricket::VideoCapturer* capturer,
200 cricket::VideoCapturer* capturer) OVERRIDE;

1234