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

  /external/opencv3/3rdparty/libwebp/enc/
syntax.c 256 for (p = 0; p < enc->num_parts_ - 1; ++p) {
285 if (!VP8BitWriterAppend(&enc->parts_[enc->num_parts_ - 1],
321 VP8PutValue(bw, enc->num_parts_ == 8 ? 3 :
322 enc->num_parts_ == 4 ? 2 :
323 enc->num_parts_ == 2 ? 1 : 0, 2);
351 for (p = 0; p < enc->num_parts_; ++p) {
360 const int percent_per_part = task_percent / enc->num_parts_;
372 3 * (enc->num_parts_ - 1);
373 for (p = 0; p < enc->num_parts_; ++p) {
406 for (p = 0; p < enc->num_parts_; ++p)
    [all...]
webpenc.c 142 enc->num_parts_ = 1; // doesn't work with multi-partition
232 enc->num_parts_ = 1 << config->partitions;
frame.c 818 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_;
820 for (p = 0; ok && p < enc->num_parts_; ++p) {
831 for (p = 0; p < enc->num_parts_; ++p) {
921 assert(enc->num_parts_ == 1);
vp8enci.h 386 int num_parts_; member in struct:VP8Encoder
iterator.c 281 it->bw_ = &enc->parts_[it->y_ & (enc->num_parts_ - 1)];
  /external/webp/src/enc/
syntax.c 252 for (p = 0; p < enc->num_parts_ - 1; ++p) {
280 VP8PutBits(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 116 enc->num_parts_ = 1; // doesn't work with multi-partition
200 enc->num_parts_ = 1 << config->partitions;
frame.c 646 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_;
648 for (p = 0; ok && p < enc->num_parts_; ++p) {
662 for (p = 0; p < enc->num_parts_; ++p) {
754 assert(enc->num_parts_ == 1);
vp8enci.h 360 int num_parts_; member in struct:VP8Encoder
iterator.c 42 it->bw_ = &enc->parts_[y & (enc->num_parts_ - 1)];
  /external/opencv3/3rdparty/libwebp/dec/
vp8i.h 214 int num_parts_; member in struct:VP8Decoder
idec.c 130 const int last_part = dec->num_parts_ - 1;
438 VP8BitReader* token_br = &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
449 if (dec->num_parts_ == 1 && MemDataSize(&idec->mem_) > MAX_MB_SIZE) {
458 if (dec->num_parts_ == 1) {
vp8.c 55 dec->num_parts_ = 1;
198 dec->num_parts_ = 1 << VP8GetValue(br, 2);
199 last_part = dec->num_parts_ - 1;
688 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
  /external/webp/src/dec/
vp8.c 53 dec->num_parts_ = 1;
197 dec->num_parts_ = 1 << VP8GetValue(br, 2);
198 last_part = dec->num_parts_ - 1;
582 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
vp8i.h 213 int num_parts_; member in struct:VP8Decoder
idec.c 121 const int last_part = dec->num_parts_ - 1;
460 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)];
465 if (dec->num_parts_ == 1 && MemDataSize(&idec->mem_) > MAX_MB_SIZE) {
472 if (dec->num_parts_ == 1) {

Completed in 808 milliseconds