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

Unified Diff: webrtc/modules/congestion_controller/send_side_congestion_controller.cc

Issue 2789233005: Move BWE period calculation from ProbingIntervalEstimator to AimdRateControl. (Closed)
Patch Set: Nits Created 3 years, 8 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/modules/congestion_controller/send_side_congestion_controller.cc
diff --git a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
index 78b7f32ad8bf5e34073f19f79036c9f52e655286..34c3f628599ca0ddffc569e308a157706176505d 100644
--- a/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
+++ b/webrtc/modules/congestion_controller/send_side_congestion_controller.cc
@@ -273,7 +273,7 @@ void SendSideCongestionController::MaybeTriggerOnNetworkChanged() {
int64_t probing_interval_ms;
{
rtc::CritScope cs(&bwe_lock_);
- probing_interval_ms = delay_based_bwe_->GetProbingIntervalMs();
+ probing_interval_ms = delay_based_bwe_->GetExpectedBwePeriodMs();
}
{
rtc::CritScope cs(&observer_lock_);

Powered by Google App Engine
This is Rietveld 408576698