Index: webrtc/modules/congestion_controller/delay_based_bwe.cc |
diff --git a/webrtc/modules/congestion_controller/delay_based_bwe.cc b/webrtc/modules/congestion_controller/delay_based_bwe.cc |
index 86ef6f2749b1a1bf4e5362b35a7eebbc659d3f99..f3f01088bd1bc8ea6ad50cc012cd136dd8be56dd 100644 |
--- a/webrtc/modules/congestion_controller/delay_based_bwe.cc |
+++ b/webrtc/modules/congestion_controller/delay_based_bwe.cc |
@@ -117,7 +117,8 @@ void DelayBasedBwe::IncomingPacketInfo(const PacketInfo& info) { |
info.payload_size, &ts_delta, &t_delta, |
&size_delta)) { |
double ts_delta_ms = (1000.0 * ts_delta) / (1 << kInterArrivalShift); |
- estimator_->Update(t_delta, ts_delta_ms, size_delta, detector_.State()); |
+ estimator_->Update(t_delta, ts_delta_ms, size_delta, detector_.State(), \ |
stefan-webrtc
2016/09/01 14:07:35
You don't want to add this \
Gaetano Carlucci
2016/09/01 16:06:26
ok
|
+ info.arrival_time_ms); |
detector_.Detect(estimator_->offset(), ts_delta_ms, |
estimator_->num_of_deltas(), info.arrival_time_ms); |
} |