Home
last modified time | relevance | path

Searched refs:num_of_deltas_ (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/modules/remote_bitrate_estimator/
Doveruse_estimator.cc30 num_of_deltas_(0), in OveruseEstimator()
58 ++num_of_deltas_; in Update()
59 if (num_of_deltas_ > kDeltaCounterMax) { in Update()
60 num_of_deltas_ = kDeltaCounterMax; in Update()
152 if (num_of_deltas_ > 10 * 30) { in UpdateNoiseEstimate()
Doveruse_estimator.h60 unsigned int num_of_deltas() const { return num_of_deltas_; } in num_of_deltas()
69 uint16_t num_of_deltas_; variable
/external/webrtc/modules/congestion_controller/goog_cc/
Dtrendline_estimator.cc168 num_of_deltas_(0), in TrendlineEstimator()
200 ++num_of_deltas_; in UpdateTrendline()
201 num_of_deltas_ = std::min(num_of_deltas_, kDeltaCounterMax); in UpdateTrendline()
273 if (num_of_deltas_ < 2) { in Detect()
278 std::min(num_of_deltas_, kMinNumDeltas) * trend * threshold_gain_; in Detect()
Dtrendline_estimator.h101 int num_of_deltas_; variable
/external/webrtc/logging/rtc_event_log/encoder/
Ddelta_encoding.cc681 const size_t num_of_deltas_; member in webrtc::__anon7a50db710111::FixedLengthDeltaDecoder
805 num_of_deltas_(num_of_deltas) { in FixedLengthDeltaDecoder()
812 std::vector<bool> existing_values(num_of_deltas_); in Decode()
814 for (size_t i = 0; i < num_of_deltas_; ++i) { in Decode()
828 std::vector<absl::optional<uint64_t>> values(num_of_deltas_); in Decode()
830 for (size_t i = 0; i < num_of_deltas_; ++i) { in Decode()