ref: 4ec5569f506880c33fd4926330228d77e9c7689a
parent: b12014b86000ffce681cefcb000a1b58dc27d1fc
parent: 8f6f6ab244ea24ff7a86ef1299d82f6f1b645e1a
author: Yaowu Xu <yaowu@google.com>
date: Wed Apr 16 08:55:48 EDT 2014
Merge "Add consts in set_fixed_partitioning()"
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -1336,8 +1336,8 @@
BLOCK_SIZE bsize) {
VP9_COMMON *const cm = &cpi->common;
const int mis = cm->mi_stride;
- int row8x8_remaining = tile->mi_row_end - mi_row;
- int col8x8_remaining = tile->mi_col_end - mi_col;
+ const int row8x8_remaining = tile->mi_row_end - mi_row;
+ const int col8x8_remaining = tile->mi_col_end - mi_col;
int block_row, block_col;
MODE_INFO *mi_upper_left = cm->mi + mi_row * mis + mi_col;
int bh = num_8x8_blocks_high_lookup[bsize];
--
⑨