OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VP8LReadBits
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/libwebp/dec/
vp8l.c
93
if (
VP8LReadBits
(br, 8) != VP8L_MAGIC_BYTE) return 0;
94
*width =
VP8LReadBits
(br, VP8L_IMAGE_SIZE_BITS) + 1;
95
*height =
VP8LReadBits
(br, VP8L_IMAGE_SIZE_BITS) + 1;
96
*has_alpha =
VP8LReadBits
(br, 1);
97
if (
VP8LReadBits
(br, VP8L_VERSION_BITS) != 0) return 0;
131
return offset +
VP8LReadBits
(br, extra_bits) + 1;
187
if (
VP8LReadBits
(br, 1)) { // use length
188
const int length_nbits = 2 + 2 *
VP8LReadBits
(br, 3);
189
max_symbol = 2 +
VP8LReadBits
(br, length_nbits);
212
int repeat =
VP8LReadBits
(br, extra_bits) + repeat_offset
[
all
...]
/external/webp/src/dec/
vp8l.c
91
const uint8_t signature =
VP8LReadBits
(br, 8);
95
*width =
VP8LReadBits
(br, VP8L_IMAGE_SIZE_BITS) + 1;
96
*height =
VP8LReadBits
(br, VP8L_IMAGE_SIZE_BITS) + 1;
97
*has_alpha =
VP8LReadBits
(br, 1);
98
VP8LReadBits
(br, VP8L_VERSION_BITS); // Read/ignore the version number.
130
return offset +
VP8LReadBits
(br, extra_bits) + 1;
186
if (
VP8LReadBits
(br, 1)) { // use length
187
const int length_nbits = 2 + 2 *
VP8LReadBits
(br, 3);
188
max_symbol = 2 +
VP8LReadBits
(br, length_nbits);
211
int repeat =
VP8LReadBits
(br, extra_bits) + repeat_offset
[
all
...]
/external/chromium_org/third_party/libwebp/utils/
bit_reader.c
188
uint32_t
VP8LReadBits
(VP8LBitReader* const br, int n_bits) {
bit_reader.h
312
uint32_t
VP8LReadBits
(VP8LBitReader* const br, int n_bits);
/external/webp/src/utils/
bit_reader.c
188
uint32_t
VP8LReadBits
(VP8LBitReader* const br, int n_bits) {
bit_reader.h
312
uint32_t
VP8LReadBits
(VP8LBitReader* const br, int n_bits);
Completed in 54 milliseconds