| Index: webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc b/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
|
| index d4e4edb29a28360ecee8822d9bdbcb50cbeadcef..1094585c7283d176f619beee932f8cfcde96900c 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/overuse_detector_unittest.cc
|
| @@ -95,12 +95,9 @@ class OveruseDetectorTest : public ::testing::Test {
|
| uint32_t timestamp_delta;
|
| int64_t time_delta;
|
| int size_delta;
|
| - if (inter_arrival_->ComputeDeltas(rtp_timestamp,
|
| - receive_time_ms,
|
| - packet_size,
|
| - ×tamp_delta,
|
| - &time_delta,
|
| - &size_delta)) {
|
| + if (inter_arrival_->ComputeDeltas(
|
| + rtp_timestamp, receive_time_ms, receive_time_ms, packet_size,
|
| + ×tamp_delta, &time_delta, &size_delta)) {
|
| double timestamp_delta_ms = timestamp_delta / 90.0;
|
| overuse_estimator_->Update(time_delta, timestamp_delta_ms, size_delta,
|
| overuse_detector_->State());
|
|
|