OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NackList
(Results
1 - 7
of
7
) sorted by null
/external/webrtc/webrtc/modules/audio_coding/neteq/
nack.h
36
// time a packet with sequence number newer than |K +
NackList
| is arrived.
131
typedef std::map<uint16_t, NackElement, NackListCompare>
NackList
;
138
NackList
GetNackList() const;
200
NackList
nack_list_;
nack.cc
109
NackList
::const_iterator lower_bound =
113
for (
NackList
::iterator it = nack_list_.begin(); it != lower_bound; ++it)
146
for (
NackList
::iterator it = nack_list_.begin(); it != nack_list_.end(); ++it)
163
for (
NackList
::iterator it = nack_list_.begin(); it != nack_list_.end();
180
Nack::
NackList
Nack::GetNackList() const {
222
for (
NackList
::const_iterator it = nack_list_.begin(); it != nack_list_.end();
nack_unittest.cc
253
Nack::
NackList
nack_list = nack->GetNackList();
260
Nack::
NackList
::iterator it = nack_list.begin();
/external/webrtc/webrtc/modules/video_coding/
receiver.h
63
std::vector<uint16_t>
NackList
(bool* request_key_frame);
receiver_unittest.cc
168
std::vector<uint16_t> nack_list = receiver_.
NackList
(&request_key_frame);
185
std::vector<uint16_t> nack_list = receiver_.
NackList
(&request_key_frame);
215
std::vector<uint16_t> nack_list = receiver_.
NackList
(&request_key_frame);
247
std::vector<uint16_t> nack_list = receiver_.
NackList
(&request_key_frame);
279
std::vector<uint16_t> nack_list = receiver_.
NackList
(&request_key_frame);
311
std::vector<uint16_t> nack_list = receiver_.
NackList
(&request_key_frame);
receiver.cc
223
std::vector<uint16_t> VCMReceiver::
NackList
(bool* request_key_frame) {
video_receiver.cc
133
std::vector<uint16_t>
nackList
= _receiver.
NackList
(&request_key_frame);
141
if (ret == VCM_OK && !
nackList
.empty()) {
144
_packetRequestCallback->ResendPackets(&
nackList
[0],
nackList
.size());
Completed in 80 milliseconds