Merge "Use MI_BLOCK_SIZE in block coding loop"

This commit is contained in:
Jingning Han 2014-02-20 14:29:30 -08:00 committed by Gerrit Code Review
commit 65bcabbe8c

View File

@ -2408,7 +2408,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