| Index: webrtc/video/report_block_stats.cc
|
| diff --git a/webrtc/video/report_block_stats.cc b/webrtc/video/report_block_stats.cc
|
| index dee5662c3cfc88162505355b1dae8f740d972ec9..f36feb9e6738c5223e51d8243f01936cfae40b0f 100644
|
| --- a/webrtc/video/report_block_stats.cc
|
| +++ b/webrtc/video/report_block_stats.cc
|
| @@ -34,9 +34,9 @@ void ReportBlockStats::Store(const RtcpStatistics& rtcp_stats,
|
| uint32_t remote_ssrc,
|
| uint32_t source_ssrc) {
|
| RTCPReportBlock block;
|
| - block.cumulativeLost = rtcp_stats.cumulative_lost;
|
| + block.cumulativeLost = rtcp_stats.packets_lost;
|
| block.fractionLost = rtcp_stats.fraction_lost;
|
| - block.extendedHighSeqNum = rtcp_stats.extended_max_sequence_number;
|
| + block.extendedHighSeqNum = rtcp_stats.extended_highest_sequence_number;
|
| block.jitter = rtcp_stats.jitter;
|
| block.remoteSSRC = remote_ssrc;
|
| block.sourceSSRC = source_ssrc;
|
|
|