Change RtpSender::OnReceiveNACK name and signature

Name changed to follow style.
list replaced with vector to decrease number of included headers.

R=philipel@webrtc.org

Review URL: https://codereview.webrtc.org/2276833003 .

Cr-Commit-Position: refs/heads/master@{#13938}
This commit is contained in:
Danil Chapovalov
2016-08-26 18:48:46 +02:00
parent 1bcfce5ff2
commit 2800d74fcf
7 changed files with 13 additions and 16 deletions

View File

@ -11,7 +11,6 @@
#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_HELP_H_
#define WEBRTC_MODULES_RTP_RTCP_SOURCE_RTCP_RECEIVER_HELP_H_
#include <list>
#include <map>
#include <memory>
#include <vector>
@ -61,7 +60,7 @@ class RTCPPacketInformation {
uint32_t rtcpPacketTypeFlags; // RTCPPacketTypeFlags bit field
uint32_t remoteSSRC;
std::list<uint16_t> nackSequenceNumbers;
std::vector<uint16_t> nackSequenceNumbers;
uint8_t applicationSubType;
uint32_t applicationName;