Lines Matching refs:desired
112 cricket::VideoFormat desired( in TEST_F() local
114 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_)); in TEST_F()
119 desired.width = 0; in TEST_F()
120 desired.height = 0; in TEST_F()
121 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_)); in TEST_F()
129 cricket::VideoFormat desired = capturer_->GetSupportedFormats()->at(0); in TEST_F() local
130 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_)); in TEST_F()
131 EXPECT_TRUE(desired == capture_format_); in TEST_F()
134 desired.fourcc = cricket::FOURCC_ANY; in TEST_F()
135 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_)); in TEST_F()
136 EXPECT_NE(capture_format_.fourcc, desired.fourcc); in TEST_F()
139 desired.interval = cricket::VideoFormat::kMinimumInterval; in TEST_F()
140 EXPECT_TRUE(capturer_->GetBestCaptureFormat(desired, &capture_format_)); in TEST_F()