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

  /external/webp/src/enc/
syntax.c 252 for (p = 0; p < enc->num_parts_ - 1; ++p) {
280 VP8PutValue(bw, enc->num_parts_ == 8 ? 3 :
281 enc->num_parts_ == 4 ? 2 :
282 enc->num_parts_ == 2 ? 1 : 0, 2);
306 for (p = 0; p < enc->num_parts_; ++p) {
315 const int percent_per_part = task_percent / enc->num_parts_;
328 3 * (enc->num_parts_ - 1);
329 for (p = 0; p < enc->num_parts_; ++p) {
362 for (p = 0; p < enc->num_parts_; ++p) {
webpenc.c 114 enc->num_parts_ = 1; // doesn't work with multi-partition
197 enc->num_parts_ = 1 << config->partitions;
frame.c 650 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_;
652 for (p = 0; ok && p < enc->num_parts_; ++p) {
666 for (p = 0; p < enc->num_parts_; ++p) {
758 assert(enc->num_parts_ == 1);
vp8enci.h 414 int num_parts_; member in struct:VP8Encoder
iterator.c 42 it->bw_ = &enc->parts_[y & (enc->num_parts_ - 1)];
  /external/webp/src/dec/
vp8.c 53 dec->num_parts_ = 1;
199 dec->num_parts_ = 1 << VP8GetValue(br, 2);
200 last_part = dec->num_parts_ - 1;
589 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
vp8i.h 250 int num_parts_; member in struct:VP8Decoder
idec.c 121 const int last_part = dec->num_parts_ - 1;
459 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
464 if (dec->num_parts_ == 1 && MemDataSize(&idec->mem_) > MAX_MB_SIZE) {
471 if (dec->num_parts_ == 1) {

Completed in 61 milliseconds