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.cc277 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()
[all …]