HomeSort by relevance Sort by last modified time
    Searched defs:best_format (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/media/base/
mutedvideocapturer_unittest.cc 64 cricket::VideoFormat best_format; local
65 EXPECT_TRUE(capturer_.GetBestCaptureFormat(format, &best_format));
66 EXPECT_EQ(format.width, best_format.width);
67 EXPECT_EQ(format.height, best_format.height);
68 EXPECT_EQ(format.interval, best_format.interval);
69 EXPECT_EQ(format.fourcc, best_format.fourcc);
  /external/chromium_org/content/renderer/media/
video_destination_handler_unittest.cc 90 VideoFormat best_format; local
92 EXPECT_TRUE(writer_.GetBestCaptureFormat(desired, &best_format));
93 EXPECT_EQ(cricket::FOURCC_BGRA, best_format.fourcc);
95 desired.fourcc = best_format.fourcc;
96 EXPECT_EQ(desired, best_format);
  /external/chromium_org/third_party/libjingle/source/talk/media/devices/
devicemanager_unittest.cc 415 cricket::VideoFormat best_format; local
417 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
418 EXPECT_EQ(kHdFormat, best_format);
425 cricket::VideoFormat best_format; local
427 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
428 EXPECT_EQ(kHdFormat, best_format);
437 cricket::VideoFormat best_format; local
439 EXPECT_TRUE(capturer->GetBestCaptureFormat(kHdFormat, &best_format));
440 EXPECT_EQ(kHdFormat, best_format);
448 cricket::VideoFormat best_format; local
    [all...]

Completed in 232 milliseconds