Renamed fields in common_types.h/RtcpStatistics.
BUG=webrtc:8033
Review-Url: https://codereview.webrtc.org/2992043002
Cr-Commit-Position: refs/heads/master@{#19247}
diff --git a/webrtc/modules/audio_coding/neteq/neteq_unittest.cc b/webrtc/modules/audio_coding/neteq/neteq_unittest.cc
index 66f6537..31fb74e 100644
--- a/webrtc/modules/audio_coding/neteq/neteq_unittest.cc
+++ b/webrtc/modules/audio_coding/neteq/neteq_unittest.cc
@@ -92,9 +92,9 @@
void Convert(const webrtc::RtcpStatistics& stats_raw,
webrtc::neteq_unittest::RtcpStatistics* stats) {
stats->set_fraction_lost(stats_raw.fraction_lost);
- stats->set_cumulative_lost(stats_raw.cumulative_lost);
+ stats->set_cumulative_lost(stats_raw.packets_lost);
stats->set_extended_max_sequence_number(
- stats_raw.extended_max_sequence_number);
+ stats_raw.extended_highest_sequence_number);
stats->set_jitter(stats_raw.jitter);
}