Searched refs:other_wants (Results 1 – 1 of 1) sorted by relevance
277 auto FpsEqResolutionEqTo(const rtc::VideoSinkWants& other_wants) { in FpsEqResolutionEqTo() argument278 return AllOf(WantsFps(Eq(other_wants.max_framerate_fps)), in FpsEqResolutionEqTo()279 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsEqResolutionEqTo()282 auto FpsMaxResolutionLt(const rtc::VideoSinkWants& other_wants) { in FpsMaxResolutionLt() argument283 return AllOf(FpsMax(), WantsMaxPixels(Lt(other_wants.max_pixel_count))); in FpsMaxResolutionLt()286 auto FpsMaxResolutionGt(const rtc::VideoSinkWants& other_wants) { in FpsMaxResolutionGt() argument287 return AllOf(FpsMax(), WantsMaxPixels(Gt(other_wants.max_pixel_count))); in FpsMaxResolutionGt()290 auto FpsLtResolutionEq(const rtc::VideoSinkWants& other_wants) { in FpsLtResolutionEq() argument291 return AllOf(WantsFps(Lt(other_wants.max_framerate_fps)), in FpsLtResolutionEq()292 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsLtResolutionEq()[all …]