Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/remote_bitrate_estimator/
Drate_statistics.cc20 accumulated_count_(0), in RateStatistics()
30 accumulated_count_ = 0; in Reset()
53 accumulated_count_ += count; in Update()
58 return static_cast<uint32_t>(accumulated_count_ * scale_ + 0.5f); in Rate()
69 assert(accumulated_count_ >= count_in_oldest_bucket); in EraseOld()
70 accumulated_count_ -= count_in_oldest_bucket; in EraseOld()
76 if (accumulated_count_ == 0) { in EraseOld()
Drate_statistics.h40 size_t accumulated_count_; variable