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