Index: webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc |
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc |
index 8edab5c1d9e3921c048ccb857866e0abc918c512..91d45f579c423aa2af076ea049b6a0e4d7edda23 100644 |
--- a/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc |
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc |
@@ -35,17 +35,6 @@ RTCPPacketInformation::RTCPPacketInformation() |
RTCPPacketInformation::~RTCPPacketInformation() {} |
-void RTCPPacketInformation::ResetNACKPacketIdArray() { |
- nackSequenceNumbers.clear(); |
-} |
- |
-void RTCPPacketInformation::AddNACKPacket(const uint16_t packetID) { |
- if (nackSequenceNumbers.size() >= kSendSideNackListSizeSanity) { |
- return; |
- } |
- nackSequenceNumbers.push_back(packetID); |
-} |
- |
void RTCPPacketInformation::AddReportInfo( |
const RTCPReportBlockInformation& report_block_info) { |
this->rtt = report_block_info.RTT; |