Home
last modified time | relevance | path

Searched refs:capture_format (Results 1 – 15 of 15) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dandroidvideocapturer.cc169 const cricket::VideoFormat& capture_format) { in Start() argument
172 const int fps = cricket::VideoFormat::IntervalToFps(capture_format.interval); in Start()
173 LOG(LS_INFO) << " AndroidVideoCapturer::Start " << capture_format.width << "x" in Start()
174 << capture_format.height << "@" << fps; in Start()
180 delegate_->Start(capture_format.width, capture_format.height, fps, this); in Start()
181 SetCaptureFormat(&capture_format); in Start()
Dremotevideocapturer.cc40 const cricket::VideoFormat& capture_format) { in Start() argument
48 SetCaptureFormat(&capture_format); in Start()
Dremotevideocapturer.h51 const cricket::VideoFormat& capture_format) override;
Dandroidvideocapturer.h89 const cricket::VideoFormat& capture_format) override;
Dvideosource_unittest.cc88 const cricket::VideoFormat& capture_format) { in Start() argument
91 formats.push_back(capture_format); in Start()
94 return FakeVideoCapturer::Start(capture_format); in Start()
/external/webrtc/talk/media/base/
Dcapturemanager.cc266 VideoFormat capture_format; in RestartVideoCapture() local
268 &capture_format)) { in RestartVideoCapture()
269 if (!video_capturer->Restart(capture_format)) { in RestartVideoCapture()
363 VideoFormat capture_format; in StartWithBestCaptureFormat() local
365 &capture_format)) { in StartWithBestCaptureFormat()
382 return video_capturer->StartCapturing(capture_format); in StartWithBestCaptureFormat()
Dvideocapturer.h167 bool StartCapturing(const VideoFormat& capture_format);
180 virtual CaptureState Start(const VideoFormat& capture_format) = 0;
204 virtual bool Restart(const VideoFormat& capture_format);
Dvideocapturer.cc143 bool VideoCapturer::StartCapturing(const VideoFormat& capture_format) { in StartCapturing() argument
145 CaptureState result = Start(capture_format); in StartCapturing()
213 bool VideoCapturer::Restart(const VideoFormat& capture_format) { in Restart() argument
215 return StartCapturing(capture_format); in Restart()
218 if (GetCaptureFormat() != NULL && *GetCaptureFormat() == capture_format) { in Restart()
224 return StartCapturing(capture_format); in Restart()
Dvideoengine_unittest.h210 cricket::VideoFormat capture_format(codec.width, codec.height, in SetOneCodec()
215 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_->Start(capture_format)); in SetOneCodec()
218 EXPECT_EQ(cricket::CS_RUNNING, video_capturer_2_->Start(capture_format)); in SetOneCodec()
1052 cricket::VideoFormat capture_format; // default format in AddRemoveCapturerMultipleSources() local
1053 capture_format.interval = cricket::VideoFormat::FpsToInterval(30); in AddRemoveCapturerMultipleSources()
1065 EXPECT_EQ(cricket::CS_RUNNING, capturer1->Start(capture_format)); in AddRemoveCapturerMultipleSources()
1077 EXPECT_EQ(cricket::CS_RUNNING, capturer2->Start(capture_format)); in AddRemoveCapturerMultipleSources()
1135 cricket::VideoFormat capture_format = (*formats)[0]; in HighAspectHighHeightCapturer() local
1136 EXPECT_EQ(cricket::CS_RUNNING, capturer->Start(capture_format)); in HighAspectHighHeightCapturer()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideocapturer.cc282 CaptureState WebRtcVideoCapturer::Start(const VideoFormat& capture_format) { in Start() argument
299 SetCaptureFormat(&capture_format); in Start()
302 if (!FormatToCapability(capture_format, &cap)) { in Start()
319 << capture_format.ToString() << ", elapsed time " in Start()
Dwebrtcvideocapturer.h72 virtual CaptureState Start(const VideoFormat& capture_format);
/external/webrtc/talk/media/devices/
Dyuvframescapturer.cc135 CaptureState YuvFramesCapturer::Start(const VideoFormat& capture_format) { in Start() argument
140 SetCaptureFormat(&capture_format); in Start()
Dyuvframescapturer.h66 virtual CaptureState Start(const VideoFormat& capture_format);
Dfilevideocapturer.cc230 CaptureState FileVideoCapturer::Start(const VideoFormat& capture_format) { in Start() argument
244 SetCaptureFormat(&capture_format); in Start()
Dfilevideocapturer.h118 virtual CaptureState Start(const VideoFormat& capture_format);