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

Unified Diff: webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc

Issue 2994633002: Renamed fields in rtp_rtcp_defines.h/RTCPReportBlock (Closed)
Patch Set: 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 57f3f734111698db49ce0e694fa9bd47891e76c8..1daf14e51e6012b7822e2b6320eacb1799f6813b 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc
+++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/remb.cc
@@ -138,9 +138,10 @@ RTCPReportBlock RembReceiver::BuildReportBlock(
RTCPReportBlock report_block;
RtcpStatistics stats;
RTC_DCHECK(statistician->GetStatistics(&stats, true));
- report_block.fractionLost = stats.fraction_lost;
- report_block.cumulativeLost = stats.packets_lost;
- report_block.extendedHighSeqNum = stats.extended_highest_sequence_number;
+ report_block.fraction_lost = stats.fraction_lost;
+ report_block.packets_lost = stats.packets_lost;
+ report_block.extended_highest_sequence_number =
+ stats.extended_highest_sequence_number;
report_block.jitter = stats.jitter;
return report_block;
}

Powered by Google App Engine
This is Rietveld 408576698