Searched refs:first_packet_seq_num_ (Results 1 – 2 of 2) sorted by relevance
43 first_packet_seq_num_(-1), in VCMSessionInfo()173 first_packet_seq_num_ = -1; in Reset()413 return !packets_.empty() && (first_packet_seq_num_ != -1); in HaveFirstPacket()450 (first_packet_seq_num_ == -1 || in InsertPacket()451 IsNewerSequenceNumber(first_packet_seq_num_, packet.seqNum))) { in InsertPacket()452 first_packet_seq_num_ = packet.seqNum; in InsertPacket()465 if (packet.is_first_packet_in_frame() && first_packet_seq_num_ == -1) { in InsertPacket()469 first_packet_seq_num_ = static_cast<int>(packet.seqNum); in InsertPacket()470 } else if (first_packet_seq_num_ != -1 && in InsertPacket()471 IsNewerSequenceNumber(first_packet_seq_num_, packet.seqNum)) { in InsertPacket()
117 int first_packet_seq_num_; variable