Searched refs:other_wants (Results 1 – 1 of 1) sorted by relevance
340 auto FpsEqResolutionEqTo(const rtc::VideoSinkWants& other_wants) { in FpsEqResolutionEqTo() argument341 return AllOf(WantsFps(Eq(other_wants.max_framerate_fps)), in FpsEqResolutionEqTo()342 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsEqResolutionEqTo()345 auto FpsMaxResolutionLt(const rtc::VideoSinkWants& other_wants) { in FpsMaxResolutionLt() argument346 return AllOf(FpsMax(), WantsMaxPixels(Lt(other_wants.max_pixel_count))); in FpsMaxResolutionLt()349 auto FpsMaxResolutionGt(const rtc::VideoSinkWants& other_wants) { in FpsMaxResolutionGt() argument350 return AllOf(FpsMax(), WantsMaxPixels(Gt(other_wants.max_pixel_count))); in FpsMaxResolutionGt()353 auto FpsLtResolutionEq(const rtc::VideoSinkWants& other_wants) { in FpsLtResolutionEq() argument354 return AllOf(WantsFps(Lt(other_wants.max_framerate_fps)), in FpsLtResolutionEq()355 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsLtResolutionEq()[all …]