From cf0ec283d2a6ef55f3e6f6c19ec1f282e355a42b Mon Sep 17 00:00:00 2001 From: Danil Chapovalov Date: Tue, 18 May 2021 15:45:04 +0200 Subject: [PATCH] Delete RtcpStatistic struct as no longer used MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:10678 Change-Id: Ic99910817f8b3044124a212627f0a754a54b69e7 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/219284 Reviewed-by: Erik Språng Commit-Queue: Danil Chapovalov Cr-Commit-Position: refs/heads/master@{#34046} --- modules/rtp_rtcp/include/rtcp_statistics.h | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/modules/rtp_rtcp/include/rtcp_statistics.h b/modules/rtp_rtcp/include/rtcp_statistics.h index 8a633241c4..de70c14943 100644 --- a/modules/rtp_rtcp/include/rtcp_statistics.h +++ b/modules/rtp_rtcp/include/rtcp_statistics.h @@ -17,16 +17,6 @@ namespace webrtc { -// Statistics for an RTCP channel -// TODO(bugs.webrtc.org/10678): Remove remaining usages of this struct in favor -// of RTCPReportBlock, rtcp::ReportBlock or other similar structs. -struct RtcpStatistics { - uint8_t fraction_lost = 0; - int32_t packets_lost = 0; // Defined as a 24 bit signed integer in RTCP - uint32_t extended_highest_sequence_number = 0; - uint32_t jitter = 0; -}; - // Statistics for RTCP packet types. struct RtcpPacketTypeCounter { RtcpPacketTypeCounter()