• Home
  • Raw
  • Download

Lines Matching refs:other_wants

277 auto FpsEqResolutionEqTo(const rtc::VideoSinkWants& other_wants) {  in FpsEqResolutionEqTo()  argument
278 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() argument
283 return AllOf(FpsMax(), WantsMaxPixels(Lt(other_wants.max_pixel_count))); in FpsMaxResolutionLt()
286 auto FpsMaxResolutionGt(const rtc::VideoSinkWants& other_wants) { in FpsMaxResolutionGt() argument
287 return AllOf(FpsMax(), WantsMaxPixels(Gt(other_wants.max_pixel_count))); in FpsMaxResolutionGt()
290 auto FpsLtResolutionEq(const rtc::VideoSinkWants& other_wants) { in FpsLtResolutionEq() argument
291 return AllOf(WantsFps(Lt(other_wants.max_framerate_fps)), in FpsLtResolutionEq()
292 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsLtResolutionEq()
295 auto FpsGtResolutionEq(const rtc::VideoSinkWants& other_wants) { in FpsGtResolutionEq() argument
296 return AllOf(WantsFps(Gt(other_wants.max_framerate_fps)), in FpsGtResolutionEq()
297 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsGtResolutionEq()
300 auto FpsEqResolutionLt(const rtc::VideoSinkWants& other_wants) { in FpsEqResolutionLt() argument
301 return AllOf(WantsFps(Eq(other_wants.max_framerate_fps)), in FpsEqResolutionLt()
302 WantsMaxPixels(Lt(other_wants.max_pixel_count))); in FpsEqResolutionLt()
305 auto FpsEqResolutionGt(const rtc::VideoSinkWants& other_wants) { in FpsEqResolutionGt() argument
306 return AllOf(WantsFps(Eq(other_wants.max_framerate_fps)), in FpsEqResolutionGt()
307 WantsMaxPixels(Gt(other_wants.max_pixel_count))); in FpsEqResolutionGt()