Searched refs:rtp_data_begin_ (Results 1 – 2 of 2) sorted by relevance
38 : rtp_data_begin_(rtp_data), length_(rtp_data_length) {} in RtpHeaderParser()51 const uint8 version = rtp_data_begin_[0] >> 6; in ParseCommon()56 const uint8 num_csrcs = rtp_data_begin_[0] & 0x0f; in ParseCommon()57 const bool marker = ((rtp_data_begin_[1] & 0x80) == 0) ? false : true; in ParseCommon()58 const uint8 payload_type = rtp_data_begin_[1] & 0x7f; in ParseCommon()59 const uint16 sequence_number = (rtp_data_begin_[2] << 8) + rtp_data_begin_[3]; in ParseCommon()61 const uint8* ptr = &rtp_data_begin_[4]; in ParseCommon()85 const uint8* data = rtp_data_begin_ + kRtpCommonHeaderLength; in ParseCast()
50 const uint8* const rtp_data_begin_; variable