Home
last modified time | relevance | path

Searched refs:other_wants (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/video/
Dvideo_stream_encoder_unittest.cc340 auto FpsEqResolutionEqTo(const rtc::VideoSinkWants& other_wants) { in FpsEqResolutionEqTo() argument
341 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() argument
346 return AllOf(FpsMax(), WantsMaxPixels(Lt(other_wants.max_pixel_count))); in FpsMaxResolutionLt()
349 auto FpsMaxResolutionGt(const rtc::VideoSinkWants& other_wants) { in FpsMaxResolutionGt() argument
350 return AllOf(FpsMax(), WantsMaxPixels(Gt(other_wants.max_pixel_count))); in FpsMaxResolutionGt()
353 auto FpsLtResolutionEq(const rtc::VideoSinkWants& other_wants) { in FpsLtResolutionEq() argument
354 return AllOf(WantsFps(Lt(other_wants.max_framerate_fps)), in FpsLtResolutionEq()
355 WantsMaxPixels(Eq(other_wants.max_pixel_count))); in FpsLtResolutionEq()
[all …]