Home
last modified time | relevance | path

Searched refs:best_format (Results 1 – 11 of 11) sorted by relevance

/external/webrtc/talk/app/webrtc/
Dremotevideocapturer.cc76 const cricket::VideoFormat& desired, cricket::VideoFormat* best_format) { in GetBestCaptureFormat() argument
77 if (!best_format) { in GetBestCaptureFormat()
83 best_format->width = desired.width; in GetBestCaptureFormat()
84 best_format->height = desired.height; in GetBestCaptureFormat()
85 best_format->fourcc = cricket::FOURCC_I420; in GetBestCaptureFormat()
86 best_format->interval = desired.interval; in GetBestCaptureFormat()
Dremotevideocapturer_unittest.cc119 VideoFormat best_format; in TEST_F() local
120 EXPECT_TRUE(capturer_.GetBestCaptureFormat(desired, &best_format)); in TEST_F()
121 EXPECT_EQ(expected_format, best_format); in TEST_F()
Dremotevideocapturer.h56 cricket::VideoFormat* best_format) override;
Dandroidvideocapturer.cc244 cricket::VideoFormat* best_format) { in GetBestCaptureFormat() argument
246 *best_format = desired; in GetBestCaptureFormat()
Dandroidvideocapturer.h82 cricket::VideoFormat* best_format) override;
Dvideosource_unittest.cc98 cricket::VideoFormat* best_format) { in GetBestCaptureFormat() argument
100 *best_format = desired; in GetBestCaptureFormat()
104 best_format); in GetBestCaptureFormat()
/external/webrtc/talk/media/devices/
Ddevicemanager_unittest.cc434 cricket::VideoFormat best_format; in TEST_F() local
436 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format)); in TEST_F()
437 EXPECT_EQ(kHdFormat, best_format); in TEST_F()
444 cricket::VideoFormat best_format; in TEST_F() local
446 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format)); in TEST_F()
447 EXPECT_EQ(kHdFormat, best_format); in TEST_F()
456 cricket::VideoFormat best_format; in TEST_F() local
458 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format)); in TEST_F()
459 EXPECT_EQ(kHdFormat, best_format); in TEST_F()
467 cricket::VideoFormat best_format; in TEST_F() local
[all …]
/external/webrtc/talk/media/webrtc/
Dwebrtcvideocapturer.cc245 VideoFormat* best_format) { in GetBestCaptureFormat() argument
246 if (!best_format) { in GetBestCaptureFormat()
250 if (!VideoCapturer::GetBestCaptureFormat(desired, best_format)) { in GetBestCaptureFormat()
253 best_format->width = desired.width; in GetBestCaptureFormat()
254 best_format->height = desired.height; in GetBestCaptureFormat()
255 best_format->fourcc = FOURCC_I420; in GetBestCaptureFormat()
256 best_format->interval = desired.interval; in GetBestCaptureFormat()
259 << best_format->ToString(); in GetBestCaptureFormat()
Dwebrtcvideocapturer.h71 VideoFormat* best_format);
/external/webrtc/talk/media/base/
Dvideocapturer.cc263 VideoFormat* best_format) { in GetBestCaptureFormat() argument
290 if (best_format) { in GetBestCaptureFormat()
291 best_format->width = best->width; in GetBestCaptureFormat()
292 best_format->height = best->height; in GetBestCaptureFormat()
293 best_format->fourcc = best->fourcc; in GetBestCaptureFormat()
294 best_format->interval = best->interval; in GetBestCaptureFormat()
295 LOG(LS_INFO) << " Best " << best_format->ToString() << " Interval " in GetBestCaptureFormat()
296 << best_format->interval << " distance " << best_distance; in GetBestCaptureFormat()
Dvideocapturer.h162 VideoFormat* best_format);