HomeSort by relevance Sort by last modified time
    Searched refs:first_packet_seq_num_ (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/video_coding/
session_info.cc 34 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_, packet.seqNum))
    [all...]
session_info.h 164 int first_packet_seq_num_; member in class:webrtc::VCMSessionInfo

Completed in 111 milliseconds