Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(692)

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_receiver_help.cc

Issue 2316093002: Replace rtcp packet parsing in the RtcpReceiver. (Closed)
Patch Set: More nits Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698