Index: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc |
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc |
index f04d9e68c09a53527085cc6ef0f32ac769bad704..f4208baed170e9fb5a40cc7118f1a69b17448db8 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc |
+++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_unittest_helper.cc |
@@ -222,7 +222,7 @@ void RemoteBitrateEstimatorTest::IncomingPacket(uint32_t ssrc, |
int64_t arrival_time, |
uint32_t rtp_timestamp, |
uint32_t absolute_send_time, |
- bool was_paced) { |
+ int probe_cluster_id) { |
danilchap
2016/05/26 11:22:42
May be also update calls to this function?
true is
|
RTPHeader header; |
memset(&header, 0, sizeof(header)); |
header.ssrc = ssrc; |
@@ -230,7 +230,7 @@ void RemoteBitrateEstimatorTest::IncomingPacket(uint32_t ssrc, |
header.extension.hasAbsoluteSendTime = true; |
header.extension.absoluteSendTime = absolute_send_time; |
bitrate_estimator_->IncomingPacket(arrival_time + kArrivalTimeClockOffsetMs, |
- payload_size, header, was_paced); |
+ payload_size, header, probe_cluster_id); |
} |
// Generates a frame of packets belonging to a stream at a given bitrate and |