Home
last modified time | relevance | path

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

/external/opencv3/3rdparty/libwebp/dec/
Dframe.c94 const int mb_y = dec->thread_ctx_.mb_y_; in FilterRow()
175 const int first_row = (ctx->mb_y_ == 0); in FinishRow()
176 const int last_row = (ctx->mb_y_ >= dec->br_mb_y_ - 1); in FinishRow()
177 int y_start = MACROBLOCK_VPOS(ctx->mb_y_); in FinishRow()
178 int y_end = MACROBLOCK_VPOS(ctx->mb_y_ + 1); in FinishRow()
260 ctx->mb_y_ = dec->mb_y_; in VP8ProcessRow()
271 ctx->mb_y_ = dec->mb_y_; in VP8ProcessRow()
542 return (dec->mb_y_ == 0) ? B_DC_PRED_NOTOPLEFT : B_DC_PRED_NOLEFT; in CheckMode()
544 return (dec->mb_y_ == 0) ? B_DC_PRED_NOTOP : B_DC_PRED; in CheckMode()
579 if (dec->mb_y_ > 0) { in VP8ReconstructBlock()
[all …]
Dvp8.c682 (dec->mb_y_ >= dec->tl_mb_y_) && (dec->mb_y_ <= dec->br_mb_y_); in VP8InitScanline()
686 for (dec->mb_y_ = 0; dec->mb_y_ < dec->br_mb_y_; ++dec->mb_y_) { in ParseFrame()
688 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)]; in ParseFrame()
Dvp8i.h176 int mb_y_; // macroblock position of the row member
260 int mb_x_, mb_y_; // current position, in macroblock units member
Didec.c437 for (; dec->mb_y_ < dec->mb_h_; ++dec->mb_y_) { in DecodeRemaining()
438 VP8BitReader* token_br = &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)]; in DecodeRemaining()
/external/webp/src/dec/
Dframe.c75 const int mb_y = ctx->mb_y_; in ReconstructRow()
255 const int mb_y = dec->thread_ctx_.mb_y_; in FilterRow()
425 const int mb_y = ctx->mb_y_; in FinishRow()
516 (dec->mb_y_ >= dec->tl_mb_y_) && (dec->mb_y_ <= dec->br_mb_y_); in VP8ProcessRow()
519 ctx->mb_y_ = dec->mb_y_; in VP8ProcessRow()
531 ctx->mb_y_ = dec->mb_y_; in VP8ProcessRow()
Dvp8i.h168 int mb_y_; // macroblock position of the row member
250 int mb_x_, mb_y_; // current position, in macroblock units member
Dvp8.c579 for (dec->mb_y_ = 0; dec->mb_y_ < dec->br_mb_y_; ++dec->mb_y_) { in ParseFrame()
582 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)]; in ParseFrame()
Didec.c448 for (; dec->mb_y_ < dec->mb_h_; ++dec->mb_y_) { in DecodeRemaining()
449 if (idec->last_mb_y_ != dec->mb_y_) { in DecodeRemaining()
456 idec->last_mb_y_ = dec->mb_y_; in DecodeRemaining()
460 &dec->parts_[dec->mb_y_ & (dec->num_parts_ - 1)]; in DecodeRemaining()