Delete RtcpStatistic struct as no longer used

Bug: webrtc:10678
Change-Id: Ic99910817f8b3044124a212627f0a754a54b69e7
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/219284
Reviewed-by: Erik Språng <sprang@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34046}
This commit is contained in:
Danil Chapovalov
2021-05-18 15:45:04 +02:00
committed by WebRTC LUCI CQ
parent 5f4efd5cda
commit cf0ec283d2

View File

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