Lines Matching refs:mb_y
28 static int CheckMode(int mb_x, int mb_y, int mode) { in CheckMode() argument
31 return (mb_y == 0) ? B_DC_PRED_NOTOPLEFT : B_DC_PRED_NOLEFT; in CheckMode()
33 return (mb_y == 0) ? B_DC_PRED_NOTOP : B_DC_PRED; in CheckMode()
75 const int mb_y = ctx->mb_y_; in ReconstructRow() local
91 if (mb_y > 0) { in ReconstructRow()
123 if (mb_y > 0) { in ReconstructRow()
133 if (mb_y > 0) { in ReconstructRow()
150 const int pred_func = CheckMode(mb_x, mb_y, block->imodes_[0]); in ReconstructRow()
161 const int pred_func = CheckMode(mb_x, mb_y, block->uvmode_); in ReconstructRow()
169 if (mb_y < dec->mb_h_ - 1) { in ReconstructRow()
203 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) { in DoFilter() argument
222 if (mb_y > 0) { in DoFilter()
241 if (mb_y > 0) { in DoFilter()
255 const int mb_y = dec->thread_ctx_.mb_y_; in FilterRow() local
258 DoFilter(dec, mb_x, mb_y); in FilterRow()
399 #define MACROBLOCK_VPOS(mb_y) ((mb_y) * 16) // vertical position of a MB argument
416 const int mb_y = ctx->mb_y_; in FinishRow() local
417 const int is_first_row = (mb_y == 0); in FinishRow()
418 const int is_last_row = (mb_y >= dec->br_mb_y_ - 1); in FinishRow()
433 int y_start = MACROBLOCK_VPOS(mb_y); in FinishRow()
434 int y_end = MACROBLOCK_VPOS(mb_y + 1); in FinishRow()
479 io->mb_y = y_start - io->crop_top; in FinishRow()
786 io->mb_y = 0; in InitIo()