| Index: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc
|
| index 762a3170ae1eccb3eccde91a29772b0718628fd9..6fd54e97f932dfc0f55998e70c93c6964f062902 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_single_stream.cc
|
| @@ -182,9 +182,10 @@ void RemoteBitrateEstimatorSingleStream::UpdateEstimate(int64_t now_ms) {
|
| }
|
| }
|
|
|
| -void RemoteBitrateEstimatorSingleStream::OnRttUpdate(int64_t rtt) {
|
| +void RemoteBitrateEstimatorSingleStream::OnRttUpdate(int64_t avg_rtt_ms,
|
| + int64_t max_rtt_ms) {
|
| CriticalSectionScoped cs(crit_sect_.get());
|
| - remote_rate_->SetRtt(rtt);
|
| + remote_rate_->SetRtt(avg_rtt_ms);
|
| }
|
|
|
| void RemoteBitrateEstimatorSingleStream::RemoveStream(unsigned int ssrc) {
|
|
|