Index: webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
index 1f1d4f81fae2aa5185895a06f7478dde4d842f47..94783b721f411584168f3e4f0a848b57f5cee421 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver.cc |
@@ -992,8 +992,9 @@ void RTCPReceiver::TriggerCallbacksFromRtcpPacket( |
if (stats_callback_) { |
for (const auto& report_block : packet_information.report_blocks) { |
RtcpStatistics stats; |
- stats.cumulative_lost = report_block.cumulativeLost; |
- stats.extended_max_sequence_number = report_block.extendedHighSeqNum; |
+ stats.packets_lost = report_block.cumulativeLost; |
+ stats.extended_highest_sequence_number = |
+ report_block.extendedHighSeqNum; |
stats.fraction_lost = report_block.fractionLost; |
stats.jitter = report_block.jitter; |