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()