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

Unified Diff: webrtc/modules/congestion_controller/probing_interval_estimator.h

Issue 2532993002: Revert of Pass time constant to bwe smoothing filter. (Closed)
Patch Set: Created 4 years, 1 month 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/modules/congestion_controller/probing_interval_estimator.h
diff --git a/webrtc/modules/congestion_controller/probing_interval_estimator.h b/webrtc/modules/congestion_controller/probing_interval_estimator.h
index 993e0da5506bb8862b9ef33986af859a22f8d5ad..daa6b91a8cae7dc76b82bbc16a0c02ad45f7c345 100644
--- a/webrtc/modules/congestion_controller/probing_interval_estimator.h
+++ b/webrtc/modules/congestion_controller/probing_interval_estimator.h
@@ -21,16 +21,14 @@
public:
explicit ProbingIntervalEstimator(const AimdRateControl* aimd_rate_control);
- ProbingIntervalEstimator(int64_t min_interval_ms,
- int64_t max_interval_ms,
- int64_t default_interval_ms,
+ ProbingIntervalEstimator(int min_interval_ms,
+ int max_interval_ms,
const AimdRateControl* aimd_rate_control);
- int64_t GetIntervalMs() const;
+ rtc::Optional<int> GetIntervalMs() const;
private:
- const int64_t min_interval_ms_;
- const int64_t max_interval_ms_;
- const int64_t default_interval_ms_;
+ const int min_interval_ms_;
+ const int max_interval_ms_;
const AimdRateControl* const aimd_rate_control_;
RTC_DISALLOW_COPY_AND_ASSIGN(ProbingIntervalEstimator);
};

Powered by Google App Engine
This is Rietveld 408576698