Home | History | Annotate | Download | only in pacing

Lines Matching defs:packet_key

82 int64 PacedSender::GetLastByteSentForPacket(const PacketKey& packet_key) {
83 PacketSendHistory::const_iterator it = send_history_.find(packet_key);
117 bool PacedSender::ShouldResend(const PacketKey& packet_key,
120 PacketSendHistory::const_iterator it = send_history_.find(packet_key);
130 if (packet_key.second.first == video_ssrc_) {
189 void PacedSender::CancelSendingPacket(const PacketKey& packet_key) {
190 packet_list_.erase(packet_key);
191 priority_packet_list_.erase(packet_key);
195 PacketKey* packet_key) {
201 *packet_key = i->first;
207 bool PacedSender::IsHighPriority(const PacketKey& packet_key) const {
209 packet_key.second.first) != priority_ssrcs_.end();
280 PacketKey packet_key;
281 PacketRef packet = PopNextPacket(&packet_type, &packet_key);
301 send_history_[packet_key] = send_record;
302 send_history_buffer_[packet_key] = send_record;
303 last_byte_sent_[packet_key.second.first] = send_record.last_byte_sent;