HomeSort by relevance Sort by last modified time
    Searched defs:VideoCapturer (Results 1 - 5 of 5) sorted by null

  /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,
  /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/base/
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...]
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...]

Completed in 165 milliseconds