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 0115b1485f154f410ccce08da12d88bbf4ff209b..6730cbb611a1a94431d5e9d464a001f44a5a1bff 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 |
@@ -123,7 +123,7 @@ void RemoteBitrateEstimatorSingleStream::IncomingPacket( |
×tamp_delta, &time_delta, &size_delta)) { |
double timestamp_delta_ms = timestamp_delta * kTimestampToMs; |
estimator->estimator.Update(time_delta, timestamp_delta_ms, size_delta, |
- estimator->detector.State()); |
+ estimator->detector.State(), now_ms); |
estimator->detector.Detect(estimator->estimator.offset(), |
timestamp_delta_ms, |
estimator->estimator.num_of_deltas(), now_ms); |