Home
last modified time | relevance | path

Searched refs:estimate_kbps_ (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/modules/congestion_controller/goog_cc/
Dlink_capacity_estimator.cc20 if (estimate_kbps_.has_value()) in UpperBound()
21 return DataRate::KilobitsPerSec(estimate_kbps_.value() + in UpperBound()
27 if (estimate_kbps_.has_value()) in LowerBound()
29 std::max(0.0, estimate_kbps_.value() - 3 * deviation_estimate_kbps())); in LowerBound()
34 estimate_kbps_.reset(); in Reset()
47 if (!estimate_kbps_.has_value()) { in Update()
48 estimate_kbps_ = sample_kbps; in Update()
50 estimate_kbps_ = (1 - alpha) * estimate_kbps_.value() + alpha * sample_kbps; in Update()
54 const double norm = std::max(estimate_kbps_.value(), 1.0); in Update()
55 double error_kbps = estimate_kbps_.value() - sample_kbps; in Update()
[all …]
Dlink_capacity_estimator.h33 absl::optional<double> estimate_kbps_; variable
/external/webrtc/modules/congestion_controller/goog_cc/test/
Dgoog_cc_printer.cc75 .estimate_kbps_.value_or(-INFINITY)); in CreateLoggers()