Searched refs:capture_format (Results 1 – 15 of 15) sorted by relevance
/external/webrtc/talk/app/webrtc/ |
D | androidvideocapturer.cc | 169 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()
|
D | remotevideocapturer.cc | 40 const cricket::VideoFormat& capture_format) { in Start() argument 48 SetCaptureFormat(&capture_format); in Start()
|
D | remotevideocapturer.h | 51 const cricket::VideoFormat& capture_format) override;
|
D | androidvideocapturer.h | 89 const cricket::VideoFormat& capture_format) override;
|
D | videosource_unittest.cc | 88 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/ |
D | capturemanager.cc | 266 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()
|
D | videocapturer.h | 167 bool StartCapturing(const VideoFormat& capture_format); 180 virtual CaptureState Start(const VideoFormat& capture_format) = 0; 204 virtual bool Restart(const VideoFormat& capture_format);
|
D | videocapturer.cc | 143 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()
|
D | videoengine_unittest.h | 210 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/ |
D | webrtcvideocapturer.cc | 282 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()
|
D | webrtcvideocapturer.h | 72 virtual CaptureState Start(const VideoFormat& capture_format);
|
/external/webrtc/talk/media/devices/ |
D | yuvframescapturer.cc | 135 CaptureState YuvFramesCapturer::Start(const VideoFormat& capture_format) { in Start() argument 140 SetCaptureFormat(&capture_format); in Start()
|
D | yuvframescapturer.h | 66 virtual CaptureState Start(const VideoFormat& capture_format);
|
D | filevideocapturer.cc | 230 CaptureState FileVideoCapturer::Start(const VideoFormat& capture_format) { in Start() argument 244 SetCaptureFormat(&capture_format); in Start()
|
D | filevideocapturer.h | 118 virtual CaptureState Start(const VideoFormat& capture_format);
|