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

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoCapturer.java 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
96 // VideoCapturer is an abstract class that defines the interfaces for video
102 // If the adaptor is needed, it acts as the downstream of VideoCapturer, adapts
108 // Create an object of a subclass of VideoCapturer
123 class VideoCapturer
131 VideoCapturer();
132 explicit VideoCapturer(talk_base::Thread* thread);
133 virtual ~VideoCapturer() {}
226 // Caps the VideoCapturer's format according to max_format. It can e.g. be
241 sigslot::signal2<VideoCapturer*, CaptureState> SignalStateChange
    [all...]
videocapturer.cc 26 // Implementation file of class VideoCapturer.
28 #include "talk/media/base/videocapturer.h"
93 // Implementation of class VideoCapturer
95 VideoCapturer::VideoCapturer() : thread_(talk_base::Thread::Current()) {
99 VideoCapturer::VideoCapturer(talk_base::Thread* thread) : thread_(thread) {
103 void VideoCapturer::Construct() {
107 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured);
114 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const
    [all...]

Completed in 48 milliseconds