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

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: Update. Created 4 years, 4 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/call/call.cc
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
index f6354ade28e89e17037e9b03a3750058efc4b3fc..676ef8cec26bf98bc5428f41c4c077eb453f6fee 100644
--- a/webrtc/call/call.cc
+++ b/webrtc/call/call.cc
@@ -678,8 +678,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,

Powered by Google App Engine
This is Rietveld 408576698