Home
last modified time | relevance | path

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

/external/webrtc/modules/congestion_controller/goog_cc/
Dbitrate_estimator.cc53 bitrate_estimate_kbps_(-1.0f), in BitrateEstimator()
69 if (bitrate_estimate_kbps_ < 0.f) in Update()
76 if (bitrate_estimate_kbps_ < 0.0f) { in Update()
78 bitrate_estimate_kbps_ = bitrate_sample_kbps; in Update()
84 if (is_small_sample && bitrate_sample_kbps < bitrate_estimate_kbps_) { in Update()
86 } else if (in_alr && bitrate_sample_kbps < bitrate_estimate_kbps_) { in Update()
95 scale * std::abs(bitrate_estimate_kbps_ - bitrate_sample_kbps) / in Update()
96 (bitrate_estimate_kbps_ + in Update()
106 bitrate_estimate_kbps_ = (sample_var * bitrate_estimate_kbps_ + in Update()
109 bitrate_estimate_kbps_ = in Update()
[all …]
Dbitrate_estimator.h56 float bitrate_estimate_kbps_; variable