Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Unified Diff: webrtc/base/ratetracker.h

Issue 2381833003: Change TWCC send interval to reduce overhead on low BW situations. (Closed)
Patch Set: Rebased Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/base/ratetracker.h
diff --git a/webrtc/base/ratetracker.h b/webrtc/base/ratetracker.h
index 6ae9bec119d23552c6f967416ad897af81741ffa..9d86b6ad668193fe2288544eea87333ce0bb81d7 100644
--- a/webrtc/base/ratetracker.h
+++ b/webrtc/base/ratetracker.h
@@ -27,25 +27,22 @@ class RateTracker {
// Computes the average rate over the most recent interval_milliseconds,
// or if the first sample was added within this period, computes the rate
// since the first sample was added.
- double ComputeRateForInterval(int64_t interval_milliseconds) const;
+ virtual double ComputeRateForInterval(int64_t interval_milliseconds) const;
// Computes the average rate over the rate tracker's recording interval
// of bucket_milliseconds * bucket_count.
- double ComputeRate() const {
- return ComputeRateForInterval(bucket_milliseconds_ *
- static_cast<int64_t>(bucket_count_));
- }
+ virtual double ComputeRate() const;
// Computes the average rate since the first sample was added to the
// rate tracker.
- double ComputeTotalRate() const;
+ virtual double ComputeTotalRate() const;
// The total number of samples added.
- size_t TotalSampleCount() const;
+ virtual size_t TotalSampleCount() const;
// Reads the current time in order to determine the appropriate bucket for
// these samples, and increments the count for that bucket by sample_count.
- void AddSamples(size_t sample_count);
+ virtual void AddSamples(size_t sample_count);
protected:
// overrideable for tests
« no previous file with comments | « no previous file | webrtc/base/ratetracker.cc » ('j') | webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698