Home
last modified time | relevance | path

Searched refs:num_parts_ (Results 1 – 8 of 8) sorted by relevance

/external/webp/src/enc/
Dsyntax.c254 for (p = 0; p < enc->num_parts_ - 1; ++p) { in EmitPartitionsSize()
283 if (!VP8BitWriterAppend(&enc->parts_[enc->num_parts_ - 1], in WriteExtensions()
319 VP8PutValue(bw, enc->num_parts_ == 8 ? 3 : in GeneratePartition0()
320 enc->num_parts_ == 4 ? 2 : in GeneratePartition0()
321 enc->num_parts_ == 2 ? 1 : 0, 2); in GeneratePartition0()
349 for (p = 0; p < enc->num_parts_; ++p) { in VP8EncFreeBitWriters()
358 const int percent_per_part = task_percent / enc->num_parts_; in VP8EncWrite()
370 3 * (enc->num_parts_ - 1); in VP8EncWrite()
371 for (p = 0; p < enc->num_parts_; ++p) { in VP8EncWrite()
404 for (p = 0; p < enc->num_parts_; ++p) { in VP8EncWrite()
Dwebpenc.c140 enc->num_parts_ = 1; // doesn't work with multi-partition in MapConfigToTools()
230 enc->num_parts_ = 1 << config->partitions; in InitVP8Encoder()
Dframe.c816 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_; in PreLoopInitialize()
818 for (p = 0; ok && p < enc->num_parts_; ++p) { in PreLoopInitialize()
829 for (p = 0; p < enc->num_parts_; ++p) { in PostLoopFinalize()
913 assert(enc->num_parts_ == 1); in VP8EncTokenLoop()
Dvp8enci.h383 int num_parts_; member
Diterator.c279 it->bw_ = &enc->parts_[it->y_ & (enc->num_parts_ - 1)]; in VP8IteratorNext()
/external/webp/src/dec/
Dvp8.c53 dec->num_parts_ = 1; in VP8New()
196 dec->num_parts_ = 1 << VP8GetValue(br, 2); in ParsePartitions()
197 last_part = dec->num_parts_ - 1; in ParsePartitions()
686 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)]; in ParseFrame()
Didec.c111 const int last_part = dec->num_parts_ - 1; in DoRemap()
412 VP8BitReader* token_br = &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)]; in DecodeRemaining()
423 if (dec->num_parts_ == 1 && MemDataSize(&idec->mem_) > MAX_MB_SIZE) { in DecodeRemaining()
432 if (dec->num_parts_ == 1) { in DecodeRemaining()
Dvp8i.h212 int num_parts_; member