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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/estimators/remb.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
Index: webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc
index 9c3e342c8afb711eb5271a4e99fd0c3c30d52ffc..57f3f734111698db49ce0e694fa9bd47891e76c8 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc
@@ -139,8 +139,8 @@ RTCPReportBlock RembReceiver::BuildReportBlock(
RtcpStatistics stats;
RTC_DCHECK(statistician->GetStatistics(&stats, true));
report_block.fractionLost = stats.fraction_lost;
- report_block.cumulativeLost = stats.cumulative_lost;
- report_block.extendedHighSeqNum = stats.extended_max_sequence_number;
+ report_block.cumulativeLost = stats.packets_lost;
+ report_block.extendedHighSeqNum = stats.extended_highest_sequence_number;
report_block.jitter = stats.jitter;
return report_block;
}
« no previous file with comments | « webrtc/modules/audio_coding/neteq/rtcp.cc ('k') | webrtc/modules/rtp_rtcp/source/receive_statistics_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698