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

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: Updated comments 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 11ce46adf3a6063ec268d65b04a2bc2db5130b8c..813395c183a3e9b46f78baf85031a3774d8b649f 100644
--- a/webrtc/modules/congestion_controller/congestion_controller.cc
+++ b/webrtc/modules/congestion_controller/congestion_controller.cc
@@ -189,6 +189,11 @@ void CongestionController::SetBweBitrates(int min_bitrate_bps,
min_bitrate_bps_);
}
+void CongestionController::ResetBweBitrates(int target_bitrate_bps) {
+ LOG(LS_INFO) << "Reset BWE bitrate to " << target_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