From 93ba687499f408bb03c9213ae3463609d9a887af Mon Sep 17 00:00:00 2001 From: Jingning Han Date: Wed, 19 Feb 2014 11:17:12 -0800 Subject: [PATCH] Use MI_BLOCK_SIZE in block coding loop Change-Id: Ia70057e11c9b3d9d4bea6fbdd08839334ed02dce --- vp9/encoder/vp9_encodeframe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c index fa7cf1a6a..fb0c46af9 100644 --- a/vp9/encoder/vp9_encodeframe.c +++ b/vp9/encoder/vp9_encodeframe.c @@ -2407,7 +2407,7 @@ static void encode_frame_internal(VP9_COMP *cpi) { // For each row of SBs in the frame vp9_tile_init(&tile, cm, tile_row, tile_col); for (mi_row = tile.mi_row_start; - mi_row < tile.mi_row_end; mi_row += 8) { + mi_row < tile.mi_row_end; mi_row += MI_BLOCK_SIZE) { if (cpi->sf.use_pick_mode) encode_rtc_sb_row(cpi, &tile, mi_row, &tp); else -- GitLab