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