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

  /external/webrtc/webrtc/test/
video_capturer.h 23 class VideoCapturer {
25 static VideoCapturer* Create(VideoCaptureInput* input,
30 virtual ~VideoCapturer() {}
36 explicit VideoCapturer(VideoCaptureInput* input);
video_capturer.cc 20 class NullCapturer : public VideoCapturer {
22 NullCapturer() : VideoCapturer(NULL) {}
29 VideoCapturer::VideoCapturer(VideoCaptureInput* input) : input_(input) {
32 VideoCapturer* VideoCapturer::Create(VideoCaptureInput* input,
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
VideoCapturer.java 30 /** Java version of cricket::VideoCapturer. */
31 public class VideoCapturer {
34 protected VideoCapturer() {
37 public static VideoCapturer create(String deviceName) {
40 return (VideoCapturer) (capturer);
44 // Sets |nativeCapturer| to be owned by VideoCapturer.
  /external/webrtc/talk/media/base/
videocapturer.h 28 // Declaration of abstract class VideoCapturer
102 // VideoCapturer is an abstract class that defines the interfaces for video
112 // Create an object of a subclass of VideoCapturer
128 class VideoCapturer
134 VideoCapturer();
135 explicit VideoCapturer(rtc::Thread* thread);
136 virtual ~VideoCapturer() {}
217 // Tells videocapturer whether to apply the pending rotation. By default, the
228 // Caps the VideoCapturer's format according to max_format. It can e.g. be
252 sigslot::signal2<VideoCapturer*, CaptureState> SignalStateChange
    [all...]
videocapturer.cc 28 // Implementation file of class VideoCapturer.
30 #include "talk/media/base/videocapturer.h"
98 // Implementation of class VideoCapturer
100 VideoCapturer::VideoCapturer()
108 VideoCapturer::VideoCapturer(rtc::Thread* thread)
116 void VideoCapturer::Construct() {
121 SignalFrameCaptured.connect(this, &VideoCapturer::OnFrameCaptured);
139 const std::vector<VideoFormat>* VideoCapturer::GetSupportedFormats() const
    [all...]

Completed in 1400 milliseconds