Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
Dnack.cc63 packet_ids_.clear(); in Parse()
121 RTC_DCHECK(packet_ids_.empty()); in WithList()
123 packet_ids_.assign(nack_list, nack_list + length); in WithList()
128 RTC_DCHECK(!packet_ids_.empty()); in Pack()
130 auto it = packet_ids_.begin(); in Pack()
131 const auto end = packet_ids_.end(); in Pack()
151 RTC_DCHECK(packet_ids_.empty()); in Unpack()
154 packet_ids_.push_back(item.first_pid); in Unpack()
158 packet_ids_.push_back(pid); in Unpack()
Dnack.h35 const std::vector<uint16_t>& packet_ids() const { return packet_ids_; } in packet_ids()
56 std::vector<uint16_t> packet_ids_; variable