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

  /external/chromium_org/content/common/gpu/media/
h264_bit_reader.cc 11 : data_(NULL), bytes_left_(0), curr_byte_(0),
53 curr_byte_ = *data_++ & 0xff;
57 prev_two_bytes_ = (prev_two_bytes_ << 8) | curr_byte_;
72 *out |= (curr_byte_ << (bits_left - num_remaining_bits_in_curr_byte_));
79 *out |= (curr_byte_ >> (num_remaining_bits_in_curr_byte_ - bits_left));
103 return (curr_byte_ &
h264_bit_reader.h 50 // Advance to the next byte, loading it into curr_byte_.
54 // Pointer to the next unread (not in curr_byte_) byte in the stream.
57 // Bytes left in the stream (without the curr_byte_).
62 int curr_byte_; member in class:content::H264BitReader
64 // Number of bits remaining in curr_byte_
  /external/chromium_org/media/base/
bit_reader.cc 58 *out += curr_byte_ >> (num_remaining_bits_in_curr_byte_ - bits_to_take);
61 curr_byte_ &= (1 << num_remaining_bits_in_curr_byte_) - 1;
77 curr_byte_ = *data_;
bit_reader.h 53 // Advance to the next byte, loading it into curr_byte_.
58 // Pointer to the next unread (not in curr_byte_) byte in the stream.
61 // Bytes left in the stream (without the curr_byte_).
66 uint8 curr_byte_; member in class:media::BitReader
68 // Number of bits remaining in curr_byte_

Completed in 850 milliseconds