Searched refs:best_format (Results 1 – 11 of 11) sorted by relevance
/external/webrtc/talk/app/webrtc/ |
D | remotevideocapturer.cc | 76 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()
|
D | remotevideocapturer_unittest.cc | 119 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()
|
D | remotevideocapturer.h | 56 cricket::VideoFormat* best_format) override;
|
D | androidvideocapturer.cc | 244 cricket::VideoFormat* best_format) { in GetBestCaptureFormat() argument 246 *best_format = desired; in GetBestCaptureFormat()
|
D | androidvideocapturer.h | 82 cricket::VideoFormat* best_format) override;
|
D | videosource_unittest.cc | 98 cricket::VideoFormat* best_format) { in GetBestCaptureFormat() argument 100 *best_format = desired; in GetBestCaptureFormat() 104 best_format); in GetBestCaptureFormat()
|
/external/webrtc/talk/media/devices/ |
D | devicemanager_unittest.cc | 434 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/ |
D | webrtcvideocapturer.cc | 245 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()
|
D | webrtcvideocapturer.h | 71 VideoFormat* best_format);
|
/external/webrtc/talk/media/base/ |
D | videocapturer.cc | 263 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()
|
D | videocapturer.h | 162 VideoFormat* best_format);
|