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 254 for (p = 0; p < enc->num_parts_ - 1; ++p) {
283 if (!VP8BitWriterAppend(&enc->parts_[enc->num_parts_ - 1],
319 VP8PutValue(bw, enc->num_parts_ == 8 ? 3 :
320 enc->num_parts_ == 4 ? 2 :
321 enc->num_parts_ == 2 ? 1 : 0, 2);
349 for (p = 0; p < enc->num_parts_; ++p) {
358 const int percent_per_part = task_percent / enc->num_parts_;
370 3 * (enc->num_parts_ - 1);
371 for (p = 0; p < enc->num_parts_; ++p) {
404 for (p = 0; p < enc->num_parts_; ++p)
    [all...]
webpenc.c 140 enc->num_parts_ = 1; // doesn't work with multi-partition
230 enc->num_parts_ = 1 << config->partitions;
frame.c 816 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_;
818 for (p = 0; ok && p < enc->num_parts_; ++p) {
829 for (p = 0; p < enc->num_parts_; ++p) {
913 assert(enc->num_parts_ == 1);
vp8enci.h 383 int num_parts_; member in struct:VP8Encoder
iterator.c 279 it->bw_ = &enc->parts_[it->y_ & (enc->num_parts_ - 1)];
  /external/webp/src/dec/
vp8i.h 212 int num_parts_; member in struct:VP8Decoder
idec.c 111 const int last_part = dec->num_parts_ - 1;
412 VP8BitReader* token_br = &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
423 if (dec->num_parts_ == 1 && MemDataSize(&idec->mem_) > MAX_MB_SIZE) {
432 if (dec->num_parts_ == 1) {
vp8.c 53 dec->num_parts_ = 1;
196 dec->num_parts_ = 1 << VP8GetValue(br, 2);
197 last_part = dec->num_parts_ - 1;
686 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];

Completed in 46 milliseconds