Replacing 64 / MI_SIZE with MI_BLOCK_SIZE.
Change-Id: I32276552b3ea6dc1dce8e298be114cfe1019b31c
This commit is contained in:
@@ -657,13 +657,13 @@ static void decode_tile(VP9D_COMP *pbi, vp9_reader *r) {
|
||||
VP9_COMMON *const pc = &pbi->common;
|
||||
int mi_row, mi_col;
|
||||
|
||||
for (mi_row = pc->cur_tile_mi_row_start;
|
||||
mi_row < pc->cur_tile_mi_row_end; mi_row += 64 / MI_SIZE) {
|
||||
for (mi_row = pc->cur_tile_mi_row_start; mi_row < pc->cur_tile_mi_row_end;
|
||||
mi_row += MI_BLOCK_SIZE) {
|
||||
// For a SB there are 2 left contexts, each pertaining to a MB row within
|
||||
vpx_memset(&pc->left_context, 0, sizeof(pc->left_context));
|
||||
vpx_memset(pc->left_seg_context, 0, sizeof(pc->left_seg_context));
|
||||
for (mi_col = pc->cur_tile_mi_col_start;
|
||||
mi_col < pc->cur_tile_mi_col_end; mi_col += 64 / MI_SIZE)
|
||||
for (mi_col = pc->cur_tile_mi_col_start; mi_col < pc->cur_tile_mi_col_end;
|
||||
mi_col += MI_BLOCK_SIZE)
|
||||
decode_modes_sb(pbi, mi_row, mi_col, r, BLOCK_SIZE_SB64X64);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user