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; |
} |