Home
last modified time | relevance | path

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

/external/webrtc/modules/rtp_rtcp/source/
Drtp_packet_history.cc138 static_cast<size_t>(packet_index) < packet_history_.size() && in PutRtpPacket()
139 packet_history_[packet_index].packet_ != nullptr) { in PutRtpPacket()
148 packet_history_.emplace_front(nullptr, absl::nullopt, 0); in PutRtpPacket()
151 while (static_cast<int>(packet_history_.size()) <= packet_index) { in PutRtpPacket()
152 packet_history_.emplace_back(nullptr, absl::nullopt, 0); in PutRtpPacket()
156 RTC_DCHECK_LT(packet_index, packet_history_.size()); in PutRtpPacket()
157 RTC_DCHECK(packet_history_[packet_index].packet_ == nullptr); in PutRtpPacket()
159 packet_history_[packet_index] = in PutRtpPacket()
166 auto prio_it = padding_priority_.insert(&packet_history_[packet_index]); in PutRtpPacket()
273 static_cast<size_t>(packet_index) >= packet_history_.size()) { in GetPacketState()
[all …]
Drtp_sender_unittest.cc251 packet_history_(config.clock, config.enable_rtx_padding_prioritization), in RtpSenderContext()
252 packet_sender_(config, &packet_history_), in RtpSenderContext()
258 &packet_history_, in RtpSenderContext()
276 RtpPacketHistory packet_history_; member
446 rtp_sender_context_->packet_history_.SetStorePacketsStatus( in EnableRtx()
840 rtp_sender_context_->packet_history_.SetStorePacketsStatus( in TEST_P()
879 rtp_sender_context_->packet_history_.SetStorePacketsStatus( in TEST_P()
914 rtp_sender_context_->packet_history_.SetStorePacketsStatus( in TEST_P()
980 rtp_sender_context_->packet_history_.SetStorePacketsStatus( in TEST_P()
1025 rtp_sender_context_->packet_history_.SetStorePacketsStatus( in TEST_P()
[all …]
Drtp_sender.cc167 packet_history_(packet_history), in RTPSender()
195 RTC_DCHECK(packet_history_); in RTPSender()
305 packet_history_->GetPacketState(packet_id); in ReSendPacket()
315 packet_history_->GetPacketAndMarkAsPending( in ReSendPacket()
366 packet_history_->SetRtt(5 + avg_rtt); in OnReceivedNack()
402 packet_history_->GetPayloadPaddingPacket( in GeneratePadding()
690 packet_history_->Clear(); in SetSequenceNumber()
Drtp_sender_egress.cc94 packet_history_(packet_history), in RtpSenderEgress()
268 packet_history_->PutRtpPacket(std::make_unique<RtpPacketToSend>(*packet), in SendPacket()
271 packet_history_->MarkPacketAsSent(*packet->retransmitted_sequence_number()); in SendPacket()
Drtp_packet_history.h207 std::deque<StoredPacket> packet_history_ RTC_GUARDED_BY(lock_);
Drtp_sender_egress.h137 RtpPacketHistory* const packet_history_; variable
Drtp_sender.h193 RtpPacketHistory* const packet_history_; variable
/external/webrtc/modules/rtp_rtcp/source/deprecated/
Ddeprecated_rtp_sender_egress.cc68 packet_history_(packet_history), in DEPRECATED_RtpSenderEgress()
194 packet_history_->PutRtpPacket(std::make_unique<RtpPacketToSend>(*packet), in SendPacket()
197 packet_history_->MarkPacketAsSent(*packet->retransmitted_sequence_number()); in SendPacket()
Ddeprecated_rtp_sender_egress.h112 RtpPacketHistory* const packet_history_; variable