Lines Matching refs:mb_x

28 static int CheckMode(int mb_x, int mb_y, int mode) {  in CheckMode()  argument
30 if (mb_x == 0) { in CheckMode()
74 int mb_x; in ReconstructRow() local
102 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) { in ReconstructRow()
103 const VP8MBData* const block = ctx->mb_data_ + mb_x; in ReconstructRow()
107 if (mb_x > 0) { in ReconstructRow()
118 VP8TopSamples* const top_yuv = dec->yuv_t_ + mb_x; in ReconstructRow()
134 if (mb_x >= dec->mb_w_ - 1) { // on rightmost border 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()
179 uint8_t* const y_out = dec->cache_y_ + mb_x * 16 + y_offset; in ReconstructRow()
180 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset; in ReconstructRow()
181 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset; in ReconstructRow()
203 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) { in DoFilter() argument
207 const VP8FInfo* const f_info = ctx->f_info_ + mb_x; in DoFilter()
208 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16; in DoFilter()
216 if (mb_x > 0) { in DoFilter()
230 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; in DoFilter()
231 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8; in DoFilter()
233 if (mb_x > 0) { in DoFilter()
254 int mb_x; in FilterRow() local
257 for (mb_x = dec->tl_mb_x_; mb_x < dec->br_mb_x_; ++mb_x) { in FilterRow()
258 DoFilter(dec, mb_x, mb_y); in FilterRow()
383 int mb_x; in DitherRow() local
385 for (mb_x = dec->tl_mb_x_; mb_x < dec->br_mb_x_; ++mb_x) { in DitherRow()
387 const VP8MBData* const data = ctx->mb_data_ + mb_x; in DitherRow()
391 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8; in DitherRow()
392 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8; in DitherRow()