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

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

Issue 1803063004: Reset the BWE when the network changes (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 years, 9 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/congestion_controller.cc
diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc
index aafab663b7b33420f1bc908cd36428bb433175ad..fd36ad997f495b089e1e38cc8e9eea5620877dcb 100644
--- a/webrtc/modules/congestion_controller/congestion_controller.cc
+++ b/webrtc/modules/congestion_controller/congestion_controller.cc
@@ -188,6 +188,11 @@ void CongestionController::SetBweBitrates(int min_bitrate_bps,
min_bitrate_bps_);
}
+void CongestionController::ResetBweBitrates(int start_bitrate_bps) {
+ LOG(LS_INFO) << "Reset BWE bitrate to " << start_bitrate_bps;
+ // TODO(holmer): Reset the BWE bitrate.
+}
+
BitrateController* CongestionController::GetBitrateController() const {
return bitrate_controller_.get();
}

Powered by Google App Engine
This is Rietveld 408576698