Searched refs:bandwidth_estimation_ (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/base/ |
D | bandwidthsmoother.cc | 26 bandwidth_estimation_(initial_bandwidth_guess), in BandwidthSmoother() 52 if (mean_bandwidth < bandwidth_estimation_) { in Sample() 54 bandwidth_estimation_ = mean_bandwidth; in Sample() 58 const int old_bandwidth_estimation = bandwidth_estimation_; in Sample() 59 const double increase_threshold_d = percent_increase_ * bandwidth_estimation_; in Sample() 76 bandwidth_estimation_ = mean_bandwidth; in Sample() 78 bandwidth_estimation_ = increase_threshold; in Sample() 83 return old_bandwidth_estimation != bandwidth_estimation_; in Sample()
|
D | bandwidthsmoother.h | 46 return bandwidth_estimation_; in get_bandwidth_estimation() 53 int bandwidth_estimation_; variable
|
/external/webrtc/webrtc/modules/bitrate_controller/ |
D | bitrate_controller_impl.cc | 90 bandwidth_estimation_(), in BitrateControllerImpl() 110 bandwidth_estimation_.SetSendBitrate(start_bitrate_bps); in SetStartBitrate() 119 bandwidth_estimation_.SetMinMaxBitrate(min_bitrate_bps, max_bitrate_bps); in SetMinMaxBitrate() 134 bandwidth_estimation_.SetEventLog(event_log); in SetEventLog() 140 bandwidth_estimation_.UpdateReceiverEstimate(clock_->TimeInMilliseconds(), in OnReceivedEstimatedBitrate() 160 bandwidth_estimation_.UpdateEstimate(clock_->TimeInMilliseconds()); in Process() 174 bandwidth_estimation_.UpdateReceiverBlock(fraction_loss, rtt, in OnReceivedRtcpReceiverReport() 193 bandwidth_estimation_.CurrentEstimate(¤t_bitrate, fraction_loss, rtt); in GetNetworkParameters() 197 std::max<uint32_t>(*bitrate, bandwidth_estimation_.GetMinBitrate()); in GetNetworkParameters() 217 bandwidth_estimation_.CurrentEstimate(&bitrate, &fraction_loss, &rtt); in AvailableBandwidth() [all …]
|
D | bitrate_controller_impl.h | 77 SendSideBandwidthEstimation bandwidth_estimation_ GUARDED_BY(critsect_);
|