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 b1e478f1f3cd1fc93885989753391e5f41ac86f6..ae13be77b5e68e695178d55bdb8ae47b026e6434 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 |
@@ -124,7 +124,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); |