Searched refs:first_packet_seq_num_ (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/video_coding/
H A Dsession_info.cc34 first_packet_seq_num_(-1),
142 first_packet_seq_num_ = -1;
459 return !packets_.empty() && (first_packet_seq_num_ != -1);
501 (first_packet_seq_num_ == -1 ||
502 IsNewerSequenceNumber(first_packet_seq_num_, packet.seqNum))) {
503 first_packet_seq_num_ = packet.seqNum;
516 if (packet.isFirstPacket && first_packet_seq_num_ == -1) {
520 first_packet_seq_num_ = static_cast<int>(packet.seqNum);
521 } else if (first_packet_seq_num_ != -1 &&
522 IsNewerSequenceNumber(first_packet_seq_num_, packe
[all...]
H A Dsession_info.h164 int first_packet_seq_num_; member in class:webrtc::VCMSessionInfo

Completed in 1154 milliseconds