Home
last modified time | relevance | path

Searched refs:mb_w_ (Results 1 – 12 of 12) sorted by relevance

/external/webp/src/enc/
Diterator_enc.c36 const size_t top_size = enc->mb_w_ * 16; in InitTop()
38 memset(enc->nz_, 0, enc->mb_w_ * sizeof(*enc->nz_)); in InitTop()
40 memset(enc->top_derr_, 0, enc->mb_w_ * sizeof(*enc->top_derr_)); in InitTop()
51 it->mb_ = enc->mb_info_ + y * enc->mb_w_; in VP8IteratorSetRow()
60 VP8IteratorSetCountDown(it, enc->mb_w_ * enc->mb_h_); // default in VP8IteratorReset()
295 if (x < enc->mb_w_ - 1) { // left in VP8IteratorSaveBoundary()
316 if (++it->x_ == it->enc_->mb_w_) { in VP8IteratorNext()
418 if (it->x_ < enc->mb_w_ - 1) { in VP8IteratorStartI4()
Danalysis_enc.c30 const int w = enc->mb_w_; in SmoothSegmentMap()
203 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) { in AssignSegments()
355 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) { in ResetAllMBInfo()
410 VP8IteratorSetCountDown(&job->it, (end_row - start_row) * enc->mb_w_); in InitSegmentJob()
430 const int total_mb = last_row * enc->mb_w_; in VP8EncAnalyze()
Dframe_enc.c115 const int nb_mbs = enc->mb_w_ * enc->mb_h_; in FinalizeSkipProba()
193 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) { in ResetSegments()
202 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) { in SetSegmentProbas()
504 uint8_t* const info = &pic->extra_info[it->x_ + it->y_ * enc->mb_w_]; in StoreSideInfo()
544 enc->mb_w_ * enc->mb_h_ * sizeof(*pic->extra_info)); in StoreSideInfo()
625 int nb_mbs = enc->mb_w_ * enc->mb_h_; in StatLoop()
685 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_; in PreLoopInitialize()
779 int max_count = (enc->mb_w_ * enc->mb_h_) >> 3; in VP8EncTokenLoop()
785 const uint64_t pixel_count = enc->mb_w_ * enc->mb_h_ * 384; in VP8EncTokenLoop()
Dwebp_enc.c61 for (i = -1; i < 4 * enc->mb_w_; ++i) { in ResetBoundaryPredictions()
110 (score_t)256 * 510 * 8 * 1024 / (enc->mb_w_ * enc->mb_h_); in MapConfigToTools()
210 enc->mb_w_ = mb_w; in InitVP8Encoder()
Dvp8i_enc.h358 int mb_w_, mb_h_; member
Dsyntax_enc.c268 const int mb_size = enc->mb_w_ * enc->mb_h_; in GeneratePartition0()
Dquant_enc.c392 int i = enc->mb_w_ * enc->mb_h_; in SimplifySegments()
/external/webp/src/dec/
Dframe_dec.c102 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) { in ReconstructRow()
134 if (mb_x >= dec->mb_w_ - 1) { // on rightmost border in ReconstructRow()
590 if (dec->br_mb_x_ > dec->mb_w_) { in VP8EnterCritical()
591 dec->br_mb_x_ = dec->mb_w_; in VP8EnterCritical()
684 const int mb_w = dec->mb_w_; in AllocateMemory()
Dvp8i_dec.h205 int mb_w_, mb_h_; member
Dtree_dec.c362 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) { in VP8ParseIntraModeRow()
Dvp8_dec.c320 dec->mb_w_ = (pic_hdr->width_ + 15) >> 4; in VP8GetHeaders()
649 for (; dec->mb_x_ < dec->mb_w_; ++dec->mb_x_) { in ParseFrame()
Didec_dec.c470 for (; dec->mb_x_ < dec->mb_w_; ++dec->mb_x_) { in DecodeRemaining()