Renamed fields in common_types.h/RtcpStatistics.

BUG=webrtc:8033

Review-Url: https://codereview.webrtc.org/2992043002
Cr-Commit-Position: refs/heads/master@{#19247}
This commit is contained in:
srte
2017-08-04 05:03:53 -07:00
committed by Commit Bot
parent 463d7ccb36
commit 186d9c3873
18 changed files with 77 additions and 70 deletions

View File

@ -92,9 +92,9 @@ void Convert(const webrtc::NetEqNetworkStatistics& stats_raw,
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);
}