HomeSort by relevance Sort by last modified time
    Searched refs:capture_format (Results 1 - 15 of 15) sorted by null

  /external/webrtc/talk/app/webrtc/
remotevideocapturer.cc 40 const cricket::VideoFormat& capture_format) {
48 SetCaptureFormat(&capture_format);
remotevideocapturer.h 51 const cricket::VideoFormat& capture_format) override;
androidvideocapturer.cc 169 const cricket::VideoFormat& capture_format) {
172 const int fps = cricket::VideoFormat::IntervalToFps(capture_format.interval);
173 LOG(LS_INFO) << " AndroidVideoCapturer::Start " << capture_format.width << "x"
174 << capture_format.height << "@" << fps;
180 delegate_->Start(capture_format.width, capture_format.height, fps, this);
181 SetCaptureFormat(&capture_format);
androidvideocapturer.h 89 const cricket::VideoFormat& capture_format) override;
videosource_unittest.cc 88 const cricket::VideoFormat& capture_format) {
91 formats.push_back(capture_format);
94 return FakeVideoCapturer::Start(capture_format);
  /external/webrtc/talk/media/devices/
yuvframescapturer.h 66 virtual CaptureState Start(const VideoFormat& capture_format);
yuvframescapturer.cc 135 CaptureState YuvFramesCapturer::Start(const VideoFormat& capture_format) {
140 SetCaptureFormat(&capture_format);
filevideocapturer.h 118 virtual CaptureState Start(const VideoFormat& capture_format);
filevideocapturer.cc 230 CaptureState FileVideoCapturer::Start(const VideoFormat& capture_format) {
244 SetCaptureFormat(&capture_format);
  /external/webrtc/talk/media/base/
videocapturer.h 167 bool StartCapturing(const VideoFormat& capture_format);
170 // capture_format: The caller got this parameter by either calling
180 virtual CaptureState Start(const VideoFormat& capture_format) = 0;
202 // Restart the video capturer with the new |capture_format|.
204 virtual bool Restart(const VideoFormat& capture_format);
capturemanager.cc 266 VideoFormat capture_format; local
268 &capture_format)) {
269 if (!video_capturer->Restart(capture_format)) {
363 VideoFormat capture_format; local
365 &capture_format)) {
382 return video_capturer->StartCapturing(capture_format);
videocapturer.cc 143 bool VideoCapturer::StartCapturing(const VideoFormat& capture_format) {
145 CaptureState result = Start(capture_format);
213 bool VideoCapturer::Restart(const VideoFormat& capture_format) {
215 return StartCapturing(capture_format);
218 if (GetCaptureFormat() != NULL && *GetCaptureFormat() == capture_format) {
224 return StartCapturing(capture_format);
videoengine_unittest.h 210 cricket::VideoFormat capture_format(codec.width, codec.height,
215 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format));
218 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_2_->Start(capture_format));
1052 cricket::VideoFormat capture_format; \/\/ default format local
1135 cricket::VideoFormat capture_format = (*formats)[0]; local
    [all...]
  /external/webrtc/talk/media/webrtc/
webrtcvideocapturer.h 72 virtual CaptureState Start(const VideoFormat& capture_format);
webrtcvideocapturer.cc 282 CaptureState WebRtcVideoCapturer::Start(const VideoFormat& capture_format) {
299 SetCaptureFormat(&capture_format);
302 if (!FormatToCapability(capture_format, &cap)) {
319 << capture_format.ToString() << ", elapsed time "

Completed in 1174 milliseconds