HomeSort by relevance Sort by last modified time
    Searched refs:VideoCapturer (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturerfactory.h 35 class VideoCapturer;
42 virtual VideoCapturer* Create(const Device& device) = 0;
50 virtual VideoCapturer* Create(const ScreencastId& screenid) = 0;
capturemanager.h 30 // some class want to listen to same VideoCapturer they can't individually stop
39 // called concurrently. Note that callbacks are called by the VideoCapturer's
55 class VideoCapturer;
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
    [all...]
fakecapturemanager.h 40 virtual bool AddVideoRenderer(VideoCapturer* video_capturer,
44 virtual bool RemoveVideoRenderer(VideoCapturer* video_capturer,
capturerenderadapter.h 29 // VideoCapturer to any number of VideoRenders such that the former feeds the
39 #include "talk/media/base/videocapturer.h"
45 class VideoCapturer;
51 static CaptureRenderAdapter* Create(VideoCapturer* video_capturer);
57 VideoCapturer* video_capturer() { return video_capturer_; }
73 explicit CaptureRenderAdapter(VideoCapturer* video_capturer);
77 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* video_frame);
84 VideoCapturer* video_capturer_;
videocapturer.h 26 // Declaration of abstract class VideoCapturer
101 // VideoCapturer is an abstract class that defines the interfaces for video
111 // Create an object of a subclass of VideoCapturer
127 class VideoCapturer
135 VideoCapturer();
136 explicit VideoCapturer(rtc::Thread* thread);
137 virtual ~VideoCapturer() {}
230 // Caps the VideoCapturer's format according to max_format. It can e.g. be
254 sigslot::signal2<VideoCapturer*, CaptureState> SignalStateChange;
258 // unmarshalled thread owned by the VideoCapturer
    [all...]
capturemanager.cc 32 #include "talk/media/base/videocapturer.h"
44 static VideoCapturerState* Create(VideoCapturer* video_capturer);
49 VideoFormat GetHighestFormat(VideoCapturer* video_capturer) const;
54 VideoCapturer* GetVideoCapturer() { return adapter()->video_capturer(); }
80 VideoCapturerState* VideoCapturerState::Create(VideoCapturer* video_capturer) {
116 VideoCapturer* video_capturer) const {
164 bool CaptureManager::StartVideoCapture(VideoCapturer* video_capturer,
178 // VideoCapturer has already been started. Don't start listening to
196 bool CaptureManager::StopVideoCapture(VideoCapturer* video_capturer,
214 VideoCapturer* video_capturer
    [all...]
fakescreencapturerfactory.h 44 virtual cricket::VideoCapturer* Create(const ScreencastId& window) {
68 void OnStateChange(cricket::VideoCapturer*, cricket::CaptureState state) {
videocapturer.cc 26 // Implementation file of class VideoCapturer.
28 #include "talk/media/base/videocapturer.h"
100 // Implementation of class VideoCapturer
102 VideoCapturer::VideoCapturer()
110 VideoCapturer::VideoCapturer(rtc::Thread* thread)
118 void VideoCapturer::Construct() {
123 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured);
143 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const
    [all...]
capturerenderadapter.cc 30 #include "talk/media/base/videocapturer.h"
37 CaptureRenderAdapter::CaptureRenderAdapter(VideoCapturer* video_capturer)
56 VideoCapturer* video_capturer) {
98 void CaptureRenderAdapter::OnVideoFrame(VideoCapturer* capturer,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCVideoCapturer+Internal.h 34 - (cricket::VideoCapturer*)takeNativeCapturer;
36 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer;
RTCVideoCapturer.mm 34 #include "talk/media/base/videocapturer.h"
38 rtc::scoped_ptr<cricket::VideoCapturer> _capturer;
52 rtc::scoped_ptr<cricket::VideoCapturer> capturer(
63 - (id)initWithCapturer:(cricket::VideoCapturer*)capturer {
70 - (cricket::VideoCapturer*)takeNativeCapturer {
  /external/chromium_org/third_party/webrtc/test/
video_capturer.h 23 class VideoCapturer {
25 static VideoCapturer* Create(VideoSendStreamInput* input,
30 virtual ~VideoCapturer() {}
36 explicit VideoCapturer(VideoSendStreamInput* input);
video_capturer.cc 20 class NullCapturer : public VideoCapturer {
22 NullCapturer() : VideoCapturer(NULL) {}
29 VideoCapturer::VideoCapturer(VideoSendStreamInput* input)
32 VideoCapturer* VideoCapturer::Create(VideoSendStreamInput* input,
vcm_capturer.h 21 class VcmCapturer : public VideoCapturer, public VideoCaptureDataCallback {
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoCapturer.java 30 /** Java version of cricket::VideoCapturer. */
31 public class VideoCapturer {
34 private VideoCapturer(long nativeVideoCapturer) {
38 public static VideoCapturer create(String deviceName) {
43 return new VideoCapturer(nativeVideoCapturer);
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideocapturerfactory.h 38 virtual VideoCapturer* Create(const Device& device);
webrtcvideocapturerfactory.cc 34 VideoCapturer* WebRtcVideoDeviceCapturerFactory::Create(const Device& device) {
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
videosource.h 35 #include "talk/media/base/videocapturer.h"
41 // cricket::VideoCapturer and make sure the camera is started at a resolution
66 cricket::VideoCapturer* capturer,
73 virtual cricket::VideoCapturer* GetVideoCapturer() {
83 cricket::VideoCapturer* capturer);
88 void OnStateChange(cricket::VideoCapturer* capturer,
93 rtc::scoped_ptr<cricket::VideoCapturer> video_capturer_;
mediastreamprovider.h 34 class VideoCapturer;
70 cricket::VideoCapturer* camera) = 0;
videosourceinterface.h 42 // Get access to the source implementation of cricket::VideoCapturer.
45 virtual cricket::VideoCapturer* GetVideoCapturer() = 0;
remotevideocapturer.h 34 #include "talk/media/base/videocapturer.h"
39 // RemoteVideoCapturer implements a simple cricket::VideoCapturer which
41 // It's used as the remote video source's VideoCapturer so that the remote video
42 // can be used as a cricket::VideoCapturer and in that way a remote video stream
44 class RemoteVideoCapturer : public cricket::VideoCapturer {
49 // cricket::VideoCapturer implementation.
videosourceproxy.h 41 PROXY_METHOD0(cricket::VideoCapturer*, GetVideoCapturer)
remotevideocapturer_unittest.cc 35 using cricket::VideoCapturer;
74 void OnStateChange(VideoCapturer* capturer,
80 void OnVideoFrame(VideoCapturer* capturer, const VideoFrame* frame) {
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
channelmanager.h 153 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...]
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager.h 53 class VideoCapturer;
88 // videocapturer.h for more detail.
89 // Note that once a VideoCapturer has been created, calling this API will
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;

Completed in 500 milliseconds

1 2 3 4