Lines Matching refs:packets_
40 packets_(), in VCMSessionInfo()
50 for (PacketIterator it = packets_.begin(); it != packets_.end(); ++it) in UpdateDataPointers()
58 if (packets_.empty()) in LowSequenceNumber()
60 return packets_.front().seqNum; in LowSequenceNumber()
64 if (packets_.empty()) in HighSequenceNumber()
67 return packets_.back().seqNum; in HighSequenceNumber()
68 return LatestSequenceNumber(packets_.back().seqNum, empty_seq_num_high_); in HighSequenceNumber()
72 if (packets_.empty()) in PictureId()
74 if (packets_.front().video_header.codec == kVideoCodecVP8) { in PictureId()
76 packets_.front().video_header.video_type_header) in PictureId()
78 } else if (packets_.front().video_header.codec == kVideoCodecVP9) { in PictureId()
80 packets_.front().video_header.video_type_header) in PictureId()
88 if (packets_.empty()) in TemporalId()
90 if (packets_.front().video_header.codec == kVideoCodecVP8) { in TemporalId()
92 packets_.front().video_header.video_type_header) in TemporalId()
94 } else if (packets_.front().video_header.codec == kVideoCodecVP9) { in TemporalId()
96 packets_.front().video_header.video_type_header) in TemporalId()
104 if (packets_.empty()) in LayerSync()
106 if (packets_.front().video_header.codec == kVideoCodecVP8) { in LayerSync()
108 packets_.front().video_header.video_type_header) in LayerSync()
110 } else if (packets_.front().video_header.codec == kVideoCodecVP9) { in LayerSync()
112 packets_.front().video_header.video_type_header) in LayerSync()
120 if (packets_.empty()) in Tl0PicId()
122 if (packets_.front().video_header.codec == kVideoCodecVP8) { in Tl0PicId()
124 packets_.front().video_header.video_type_header) in Tl0PicId()
126 } else if (packets_.front().video_header.codec == kVideoCodecVP9) { in Tl0PicId()
128 packets_.front().video_header.video_type_header) in Tl0PicId()
136 if (packets_.empty() || in GetNaluInfos()
137 packets_.front().video_header.codec != kVideoCodecH264) in GetNaluInfos()
140 for (const VCMPacket& packet : packets_) { in GetNaluInfos()
151 if (packets_.empty()) in SetGofInfo()
155 &packets_.front().video_header.video_type_header); in SetGofInfo()
170 packets_.clear(); in Reset()
179 for (PacketIteratorConst it = packets_.begin(); it != packets_.end(); ++it) in SessionLength()
185 return packets_.size(); in NumPackets()
195 for (it = packets_.begin(); it != packet_it; ++it) in InsertBuffer()
261 if (it == packets_.end()) in ShiftSubsequentPackets()
266 for (; it != packets_.end(); ++it) { in ShiftSubsequentPackets()
278 PacketIterator it = packets_.begin(); in UpdateCompleteSession()
281 for (; it != packets_.end(); ++it) { in UpdateCompleteSession()
306 for (; packet_it != packets_.end(); ++packet_it) { in FindNaluEnd()
339 while (it != packets_.end()) { in FindNextPartitionBeginning()
356 while (it != packets_.end()) { in FindPartitionEnd()
386 if (packets_.empty()) { in MakeDecodable()
389 PacketIterator it = packets_.begin(); in MakeDecodable()
398 for (; it != packets_.end(); ++it) { in MakeDecodable()
413 return !packets_.empty() && (first_packet_seq_num_ != -1); in HaveFirstPacket()
417 return !packets_.empty() && (last_packet_seq_num_ != -1); in HaveLastPacket()
430 if (packets_.size() == kMaxPacketsInSession) { in InsertPacket()
437 ReversePacketIterator rit = packets_.rbegin(); in InsertPacket()
438 for (; rit != packets_.rend(); ++rit) in InsertPacket()
443 if (rit != packets_.rend() && (*rit).seqNum == packet.seqNum && in InsertPacket()
496 PacketIterator packet_list_it = packets_.insert(rit.base(), packet); in InsertPacket()