| 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 d2b45b7889d5923a735e0c972ee8e900451feea1..c31d441c978ef587dc1968642a7ea6712726ffbe 100644
|
| --- a/webrtc/modules/congestion_controller/congestion_controller.cc
|
| +++ b/webrtc/modules/congestion_controller/congestion_controller.cc
|
| @@ -342,7 +342,9 @@ void CongestionController::MaybeTriggerOnNetworkChanged() {
|
| bitrate_bps = IsNetworkDown() || IsSendQueueFull() ? 0 : bitrate_bps;
|
|
|
| if (HasNetworkParametersToReportChanged(bitrate_bps, fraction_loss, rtt)) {
|
| - observer_->OnNetworkChanged(bitrate_bps, fraction_loss, rtt);
|
| + observer_->OnNetworkChanged(
|
| + bitrate_bps, fraction_loss, rtt,
|
| + transport_feedback_adapter_.GetProbingIntervalMs());
|
| remote_estimator_proxy_.OnBitrateChanged(bitrate_bps);
|
| }
|
| }
|
|
|