Searched refs:VP8PutValue (Results 1 - 4 of 4) sorted by relevance

/haiku-fatelf/src/add-ons/translators/webp/libwebp/enc/
H A Dsyntax.c101 VP8PutValue(bw, proba->segments_[s], 8);
113 VP8PutValue(bw, hdr->level_, 6);
114 VP8PutValue(bw, hdr->sharpness_, 3);
120 VP8PutValue(bw, 0, 4);
123 VP8PutValue(bw, 0, 3); // all others unused
131 VP8PutValue(bw, enc->base_quant_, 7);
170 VP8PutValue(bw, enc->config_->partitions, 2);
H A Dbit_writer.c134 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits) { function
144 VP8PutValue(bw, ((-value) << 1) | 1, nb_bits + 1);
146 VP8PutValue(bw, value << 1, nb_bits + 1);
165 VP8PutValue(bw, 0, 8 - bw->nb_bits_);
H A Dbit_writer.h40 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits);
H A Dtree.c494 VP8PutValue(bw, p0, 8);
501 VP8PutValue(bw, probas->skip_proba_, 8);

Completed in 41 milliseconds