HomeSort by relevance Sort by last modified time
    Searched defs:Nack (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/
nack.h 22 // The Nack class keeps track of the lost packets, an estimate of time-to-play
26 // called to update the NACK list.
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
54 class Nack {
56 // A limit for the size of the NACK list.
60 static Nack* Create(int nack_threshold_packets);
62 ~Nack() {}
64 // Set a maximum for the size of the NACK list. If the last received packet
65 // has sequence number of N, then NACK list will not contain any elemen
    [all...]
nack.cc 11 #include "webrtc/modules/audio_coding/main/acm2/nack.h"
31 Nack::Nack(int nack_threshold_packets)
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::UpdateSamplesPerPacket(uint16_t sequence_number_current_received_rtp,
98 void Nack::UpdateList(uint16_t sequence_number_current_received_rtp)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_packet.h 558 // Generic NACK (RFC 4585).
567 class Nack : public RtcpPacket {
569 Nack() : RtcpPacket() {
573 virtual ~Nack() {}
596 DISALLOW_COPY_AND_ASSIGN(Nack);
  /external/chromium_org/third_party/webrtc/test/
rtcp_packet_parser.h 336 class Nack : public PacketType {
338 Nack() {}
339 virtual ~Nack() {}
347 void Set(const RTCPUtility::RTCPPacketRTPFBNACK& nack) {
348 nack_ = nack;
404 Nack* nack() { return &nack_; } function in class:webrtc::test::RtcpPacketParser
428 Nack nack_;

Completed in 94 milliseconds