OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:curr_byte_
(Results
1 - 2
of
2
) sorted by null
/external/v4l2_codec2/vda/
h264_bit_reader.cc
14
curr_byte_
(0),
56
curr_byte_
= *data_++ & 0xff;
60
prev_two_bytes_ = ((prev_two_bytes_ & 0xff) << 8) |
curr_byte_
;
75
*out |= (
curr_byte_
<< (bits_left - num_remaining_bits_in_curr_byte_));
82
*out |= (
curr_byte_
>> (num_remaining_bits_in_curr_byte_ - bits_left));
99
// If there is no more RBSP data, then |
curr_byte_
| contains the stop bit and
103
if ((
curr_byte_
& ((1 << (num_remaining_bits_in_curr_byte_ - 1)) - 1)) != 0)
h264_bit_reader.h
52
// Advance to the next byte, loading it into
curr_byte_
.
56
// Pointer to the next unread (not in
curr_byte_
) byte in the stream.
59
// Bytes left in the stream (without the
curr_byte_
).
64
int
curr_byte_
;
member in class:media::H264BitReader
66
// Number of bits remaining in
curr_byte_
Completed in 4232 milliseconds