Searched refs:VP8LReadBits (Results 1 - 3 of 3) sorted by relevance

/external/webp/src/dec/
H A Dvp8l.c89 const uint8_t signature = VP8LReadBits(br, 8);
93 *width = VP8LReadBits(br, VP8L_IMAGE_SIZE_BITS) + 1;
94 *height = VP8LReadBits(br, VP8L_IMAGE_SIZE_BITS) + 1;
95 *has_alpha = VP8LReadBits(br, 1);
96 VP8LReadBits(br, VP8L_VERSION_BITS); // Read/ignore the version number.
128 return offset + VP8LReadBits(br, extra_bits) + 1;
184 if (VP8LReadBits(br, 1)) { // use length
185 const int length_nbits = 2 + 2 * VP8LReadBits(br, 3);
186 max_symbol = 2 + VP8LReadBits(br, length_nbits);
209 int repeat = VP8LReadBits(b
[all...]
/external/webp/src/utils/
H A Dbit_reader.c186 uint32_t VP8LReadBits(VP8LBitReader* const br, int n_bits) { function
H A Dbit_reader.h284 uint32_t VP8LReadBits(VP8LBitReader* const br, int n_bits);

Completed in 80 milliseconds