Searched defs:Nack (Results 1 - 4 of 4) sorted by relevance

/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dnack.h23 class Nack : public Rtpfb { class in namespace:webrtc::rtcp
26 Nack() {} function in class:webrtc::rtcp::Nack
28 virtual ~Nack() {}
58 RTC_DISALLOW_COPY_AND_ASSIGN(Nack);
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dnack.h22 // The Nack class keeps track of the lost packets, an estimate of time-to-play
38 // The Nack class has to know about the sample rate of the packets to compute
41 // then Nack should be reset. This is because NetEQ would flush its buffer and
52 class Nack { class in namespace:webrtc
58 static Nack* Create(int nack_threshold_packets);
60 ~Nack();
134 explicit Nack(int nack_threshold_packets);
H A Dnack.cc29 Nack::Nack(int nack_threshold_packets) function in class:webrtc::Nack
41 Nack::~Nack() = default;
43 Nack* Nack::Create(int nack_threshold_packets) {
44 return new Nack(nack_threshold_packets);
47 void Nack::UpdateSampleRate(int sample_rate_hz) {
52 void Nack::UpdateLastReceivedPacket(uint16_t sequence_number,
88 void Nack
[all...]
/external/webrtc/webrtc/test/
H A Drtcp_packet_parser.h336 class Nack : public PacketType { class in namespace:webrtc::test
338 Nack() {} function in class:webrtc::test::Nack
339 virtual ~Nack() {}
652 Nack* nack() { return &nack_; }
687 Nack nack_;

Completed in 907 milliseconds