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

  /external/webp/src/enc/
syntax.c 209 VP8PutValue(bw, proba->segments_[s], 8);
221 VP8PutValue(bw, hdr->level_, 6);
222 VP8PutValue(bw, hdr->sharpness_, 3);
228 VP8PutValue(bw, 0, 4);
231 VP8PutValue(bw, 0, 3); // all others unused
239 VP8PutValue(bw, enc->base_quant_, 7);
280 VP8PutValue(bw, enc->num_parts_ == 8 ? 3 :
tree.c 494 VP8PutValue(bw, p0, 8);
501 VP8PutValue(bw, probas->skip_proba_, 8);
  /external/webp/src/utils/
bit_writer.c 143 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits) {
153 VP8PutValue(bw, ((-value) << 1) | 1, nb_bits + 1);
155 VP8PutValue(bw, value << 1, nb_bits + 1);
174 VP8PutValue(bw, 0, 9 - bw->nb_bits_);
bit_writer.h 48 void VP8PutValue(VP8BitWriter* const bw, int value, int nb_bits);

Completed in 41 milliseconds