Home
last modified time | relevance | path

Searched refs:oldest_seq_num (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
Dbwe.cc158 uint16_t oldest_seq_num = received_packets_.OldestSeqNumber(); in LinkedSetPacketLossRatio() local
162 static_cast<uint16_t>(newest_seq_num - oldest_seq_num + 1); in LinkedSetPacketLossRatio()
190 uint16_t oldest_seq_num = (*node_it)->sequence_number; in RecentPacketLossRatio() local
191 uint16_t newest_seq_num = oldest_seq_num; in RecentPacketLossRatio()
201 if (IsNewerSequenceNumber(oldest_seq_num, seq_num)) { in RecentPacketLossRatio()
202 oldest_seq_num = seq_num; in RecentPacketLossRatio()
209 int gap = static_cast<uint16_t>(newest_seq_num - oldest_seq_num + 1); in RecentPacketLossRatio()