Searched refs:max_frame_rate_ (Results 1 – 2 of 2) sorted by relevance
23 max_frame_rate_(absl::nullopt) {} in VideoSourceRestrictions()31 max_frame_rate_(std::move(max_frame_rate)) { in VideoSourceRestrictions()35 RTC_DCHECK(!max_frame_rate_.has_value() || in VideoSourceRestrictions()36 max_frame_rate_.value() < std::numeric_limits<int>::max()); in VideoSourceRestrictions()37 RTC_DCHECK(!max_frame_rate_.has_value() || max_frame_rate_.value() > 0.0); in VideoSourceRestrictions()43 if (max_frame_rate_) in ToString()44 ss << " max_fps=" << max_frame_rate_.value(); in ToString()64 return max_frame_rate_; in max_frame_rate()79 max_frame_rate_ = std::move(max_frame_rate); in set_max_frame_rate()
36 max_frame_rate_ == rhs.max_frame_rate_;68 absl::optional<double> max_frame_rate_; variable