Lines Matching refs:adapted_format
99 const VideoFormat adapted_format =
101 if (!adapted_format.IsSize0x0()) {
102 adapted_format_ = adapted_format;
103 last_adapt_was_no_op_ = (in_width == adapted_format.width &&
104 in_height == adapted_format.height);
277 VideoFormat adapted_format = adapter_->AdaptFrameResolution(
279 EXPECT_EQ(capture_format_.width, adapted_format.width);
280 EXPECT_EQ(capture_format_.height, adapted_format.height);
283 adapted_format = capture_format_,
285 EXPECT_EQ(capture_format_.width, adapted_format.width);
286 EXPECT_EQ(capture_format_.height, adapted_format.height);
293 const VideoFormat adapted_format = adapter_->AdaptFrameResolution(
295 EXPECT_EQ(capture_format_.width, adapted_format.width);
296 EXPECT_EQ(capture_format_.height, adapted_format.height);
306 const VideoFormat adapted_format = adapter_->AdaptFrameResolution(
308 EXPECT_EQ(request_format.width, adapted_format.width);
309 EXPECT_EQ(request_format.height, adapted_format.height);