Searched defs:VP8PutValue (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libwebp/utils/
H A Dbit_writer.c141 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits) { function
151 VP8PutValue(bw, ((-value) << 1) | 1, nb_bits + 1);
153 VP8PutValue(bw, value << 1, nb_bits + 1);
172 VP8PutValue(bw, 0, 9 - bw->nb_bits_);
/external/webp/src/utils/
H A Dbit_writer.c141 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits) { function
151 VP8PutValue(bw, ((-value) << 1) | 1, nb_bits + 1);
153 VP8PutValue(bw, value << 1, nb_bits + 1);
172 VP8PutValue(bw, 0, 9 - bw->nb_bits_);

Completed in 67 milliseconds