Home
last modified time | relevance | path

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

/external/webrtc/modules/congestion_controller/goog_cc/
Dsend_side_bandwidth_estimation.cc118 capacity_estimate_bps_ = in UpdateDelayBasedEstimate()
119 std::min(capacity_estimate_bps_, delay_based_bitrate.bps<double>()); in UpdateDelayBasedEstimate()
127 capacity_estimate_bps_ = start_rate.bps<double>(); in OnStartingRate()
136 if (acknowledged_target.bps() > capacity_estimate_bps_) { in OnRateUpdate()
139 capacity_estimate_bps_ = alpha * capacity_estimate_bps_ + in OnRateUpdate()
147 capacity_estimate_bps_ = in OnRttBackoff()
148 std::min(capacity_estimate_bps_, backoff_rate.bps<double>()); in OnRttBackoff()
153 return DataRate::BitsPerSec(capacity_estimate_bps_); in estimate()
Dsend_side_bandwidth_estimation.h50 double capacity_estimate_bps_ = 0; variable