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

Unified Diff: webrtc/call/call.cc

Issue 2262213002: Stop increasing loss-based BWE if no feedback is received. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 3 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
« no previous file with comments | « no previous file | webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/call.cc
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
index 2cc296dd36e9de80417f817d38e66afae6ccee18..a3b4ec60de84eecfa7a686b2a4c8311012f2b8f0 100644
--- a/webrtc/call/call.cc
+++ b/webrtc/call/call.cc
@@ -694,8 +694,11 @@ void Call::OnNetworkRouteChanged(const std::string& transport_name,
LOG(LS_INFO) << "Network route changed on transport " << transport_name
<< ": new local network id " << network_route.local_network_id
<< " new remote network id " << network_route.remote_network_id
- << " Reset bitrate to "
- << config_.bitrate_config.start_bitrate_bps << "bps";
+ << " Reset bitrates to min: "
+ << config_.bitrate_config.min_bitrate_bps
+ << " bps, start: " << config_.bitrate_config.start_bitrate_bps
+ << " bps, max: " << config_.bitrate_config.start_bitrate_bps
+ << " bps.";
congestion_controller_->ResetBweAndBitrates(
config_.bitrate_config.start_bitrate_bps,
config_.bitrate_config.min_bitrate_bps,
« no previous file with comments | « no previous file | webrtc/modules/bitrate_controller/bitrate_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698