OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Nack
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
nack.h
23
class
Nack
: public Rtpfb {
26
Nack
() {}
28
virtual ~
Nack
() {}
58
RTC_DISALLOW_COPY_AND_ASSIGN(
Nack
);
/external/webrtc/webrtc/modules/audio_coding/neteq/
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
52
class
Nack
{
54
// A limit for the size of the
NACK
list.
58
static
Nack
* Create(int nack_threshold_packets);
60
~
Nack
();
62
// Set a maximum for the size of the
NACK
list. If the last received packet
63
// has sequence number of N, then
NACK
list will not contain any elemen
[
all
...]
nack.cc
11
#include "webrtc/modules/audio_coding/neteq/
nack
.h"
29
Nack
::
Nack
(int nack_threshold_packets)
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
[
all
...]
/external/webrtc/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
;
652
Nack
*
nack
() { return &nack_; }
687
Nack
nack_;
Completed in 341 milliseconds