Home | History | Annotate | Download | only in dec

Lines Matching refs:mb_x

33 static void DoFilter(const VP8Decoder* const dec, int mb_x, int mb_y) {
37 const VP8FInfo* const f_info = ctx->f_info_ + mb_x;
38 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16;
46 if (mb_x > 0) {
60 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
61 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
63 if (mb_x > 0) {
84 int mb_x;
87 for (mb_x = dec->tl_mb_x_; mb_x < dec->br_mb_x_; ++mb_x) {
88 DoFilter(dec, mb_x, mb_y);
216 int mb_x;
218 for (mb_x = dec->tl_mb_x_; mb_x < dec->br_mb_x_; ++mb_x) {
220 const VP8MBData* const data = ctx->mb_data_ + mb_x;
224 uint8_t* const u_dst = dec->cache_u_ + cache_id * 8 * uv_bps + mb_x * 8;
225 uint8_t* const v_dst = dec->cache_v_ + cache_id * 8 * uv_bps + mb_x * 8;
665 static int CheckMode(int mb_x, int mb_y, int mode) {
667 if (mb_x == 0) {
711 int mb_x;
717 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) {
718 const VP8MBData* const block = ctx->mb_data_ + mb_x;
722 if (mb_x > 0) {
745 VP8TopSamples* const top_yuv = dec->yuv_t_ + mb_x;
754 } else if (mb_x == 0) {
767 if (mb_x >= dec->mb_w_ - 1) { // on rightmost border
783 const int pred_func = CheckMode(mb_x, mb_y,
795 const int pred_func = CheckMode(mb_x, mb_y, block->uvmode_);
813 uint8_t* const y_out = dec->cache_y_ + mb_x * 16 + y_offset;
814 uint8_t* const u_out = dec->cache_u_ + mb_x * 8 + uv_offset;
815 uint8_t* const v_out = dec->cache_v_ + mb_x * 8 + uv_offset;