OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rtp_data_begin_
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/cast/net/rtp/
rtp_header_parser.cc
38
:
rtp_data_begin_
(rtp_data), length_(rtp_data_length) {}
51
const uint8 version =
rtp_data_begin_
[0] >> 6;
56
const uint8 num_csrcs =
rtp_data_begin_
[0] & 0x0f;
57
const bool marker = ((
rtp_data_begin_
[1] & 0x80) == 0) ? false : true;
58
const uint8 payload_type =
rtp_data_begin_
[1] & 0x7f;
59
const uint16 sequence_number = (
rtp_data_begin_
[2] << 8) +
rtp_data_begin_
[3];
61
const uint8* ptr = &
rtp_data_begin_
[4];
85
const uint8* data =
rtp_data_begin_
+ kRtpCommonHeaderLength;
rtp_header_parser.h
50
const uint8* const
rtp_data_begin_
;
member in class:media::cast::RtpHeaderParser
Completed in 2743 milliseconds