Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(263)

Unified Diff: webrtc/modules/audio_coding/neteq/neteq_unittest.cc

Issue 2992043002: Renamed fields in common_types.h/RtcpStatistics. (Closed)
Patch Set: Rebase on new master Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine_unittest.cc ('k') | webrtc/modules/audio_coding/neteq/rtcp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_coding/neteq/neteq_unittest.cc
diff --git a/webrtc/modules/audio_coding/neteq/neteq_unittest.cc b/webrtc/modules/audio_coding/neteq/neteq_unittest.cc
index 66f653790dee7765d2bda8bf90bfa0992c9024b9..31fb74ee8294f1631f3ed8d439b45a24ba4dbc09 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::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);
}
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine_unittest.cc ('k') | webrtc/modules/audio_coding/neteq/rtcp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698