Searched defs:VideoCapturer (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/webrtc/test/
H A Dvideo_capturer.h23 class VideoCapturer { class in namespace:webrtc::test
25 static VideoCapturer* Create(VideoSendStreamInput* input,
30 virtual ~VideoCapturer() {}
36 explicit VideoCapturer(VideoSendStreamInput* input);
H A Dvideo_capturer.cc20 class NullCapturer : public VideoCapturer {
22 NullCapturer() : VideoCapturer(NULL) {}
29 VideoCapturer::VideoCapturer(VideoSendStreamInput* input) function in class:webrtc::test::VideoCapturer
32 VideoCapturer* VideoCapturer::Create(VideoSendStreamInput* input,
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DVideoCapturer.java30 /** Java version of cricket::VideoCapturer. */
31 public class VideoCapturer { class
34 private VideoCapturer(long nativeVideoCapturer) { method in class:VideoCapturer
38 public static VideoCapturer create(String deviceName) {
43 return new VideoCapturer(nativeVideoCapturer);
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocapturer.h26 // 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 class in namespace:cricket
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...]
H A Dvideocapturer.cc26 // Implementation file of class VideoCapturer.
100 // Implementation of class VideoCapturer
102 VideoCapturer::VideoCapturer() function in class:cricket::VideoCapturer
110 VideoCapturer::VideoCapturer(rtc::Thread* thread) function in class:cricket::VideoCapturer
118 void VideoCapturer::Construct() {
123 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured);
143 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const {
147 bool VideoCapturer
[all...]

Completed in 221 milliseconds