Index: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc |
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc |
index 5e7560a7797def79d1d2026acd971a1487e748e6..e9c84c0b151908c5a608595dd4dd4d4e6efdaf5c 100644 |
--- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc |
+++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc |
@@ -46,10 +46,10 @@ RemoteEstimatorProxy::RemoteEstimatorProxy(Clock* clock, |
RemoteEstimatorProxy::~RemoteEstimatorProxy() {} |
void RemoteEstimatorProxy::IncomingPacketFeedbackVector( |
- const std::vector<PacketInfo>& packet_feedback_vector) { |
+ const std::vector<PacketFeedback>& packet_feedback_vector) { |
rtc::CritScope cs(&lock_); |
- for (PacketInfo info : packet_feedback_vector) |
- OnPacketArrival(info.sequence_number, info.arrival_time_ms); |
+ for (PacketFeedback packet : packet_feedback_vector) |
+ OnPacketArrival(packet.sequence_number, packet.arrival_time_ms); |
} |
void RemoteEstimatorProxy::IncomingPacket(int64_t arrival_time_ms, |