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

  /external/v4l2_codec2/vda/
vp8_bool_decoder.cc 61 #define VP8_LOTS_OF_BITS (0x40000000)
112 count_ += VP8_LOTS_OF_BITS;
180 bit_count = std::max(0, bit_count - VP8_LOTS_OF_BITS);
204 // data, |count_| is additionally filled with VP8_LOTS_OF_BITS. So when
205 // |count_| == VP8_LOTS_OF_BITS - 1, the user's data has been exhausted.
206 return (count_ > VP8_BD_VALUE_BIT) && (count_ < VP8_LOTS_OF_BITS);
  /external/libvpx/libvpx/vp8/decoder/
dboolhuff.h 33 #define VP8_LOTS_OF_BITS (0x40000000)
112 * data, count is additionally filled with VP8_LOTS_OF_BITS. So when
113 * count == VP8_LOTS_OF_BITS - 1, the user's data has been exhausted.
115 if ((br->count > VP8_BD_VALUE_SIZE) && (br->count < VP8_LOTS_OF_BITS)) {
dboolhuff.c 52 count += VP8_LOTS_OF_BITS;

Completed in 170 milliseconds