Lines Matching refs:mb_row
56 int mb_row; in thread_encoding_proc() local
74 for (mb_row = ithread + 1; mb_row < cm->mb_rows; in thread_encoding_proc()
75 mb_row += (cpi->encoding_thread_count + 1)) { in thread_encoding_proc()
82 int map_index = (mb_row * cm->mb_cols); in thread_encoding_proc()
84 vpx_atomic_int *current_mb_col = &cpi->mt_current_mb_col[mb_row]; in thread_encoding_proc()
87 vp8_writer *w = &cpi->bc[1 + (mb_row % num_part)]; in thread_encoding_proc()
89 tp = cpi->tok + (mb_row * (cm->mb_cols * 16 * 24)); in thread_encoding_proc()
90 cpi->tplist[mb_row].start = tp; in thread_encoding_proc()
93 last_row_current_mb_col = &cpi->mt_current_mb_col[mb_row - 1]; in thread_encoding_proc()
101 xd->up_available = (mb_row != 0); in thread_encoding_proc()
102 recon_yoffset = (mb_row * recon_y_stride * 16); in thread_encoding_proc()
103 recon_uvoffset = (mb_row * recon_uv_stride * 8); in thread_encoding_proc()
114 if (mb_row && !(mb_col & (nsync - 1))) { in thread_encoding_proc()
128 xd->mb_to_top_edge = -((mb_row * 16) << 3); in thread_encoding_proc()
129 xd->mb_to_bottom_edge = ((cm->mb_rows - 1 - mb_row) * 16) << 3; in thread_encoding_proc()
137 x->mv_row_min = -((mb_row * 16) + (VP8BORDERINPIXELS - 16)); in thread_encoding_proc()
139 ((cm->mb_rows - 1 - mb_row) * 16) + (VP8BORDERINPIXELS - 16); in thread_encoding_proc()
182 cpi, x, &tp, recon_yoffset, recon_uvoffset, mb_row, mb_col); in thread_encoding_proc()
259 cpi->tplist[mb_row].stop = tp; in thread_encoding_proc()