Replacing 1 << mi_{width, height}_log2() with lookup tables.
authorDmitry Kovalev <dkovalev@google.com>
Thu, 19 Dec 2013 21:43:45 +0000 (13:43 -0800)
committerDmitry Kovalev <dkovalev@google.com>
Thu, 19 Dec 2013 21:43:45 +0000 (13:43 -0800)
Change-Id: Iba91ff1e797a83517e2cd7c3ab86cba39f39415b

vp9/encoder/vp9_encodeframe.c

index b184087..28d4db7 100644 (file)
@@ -368,8 +368,8 @@ static void select_in_frame_q_segment(VP9_COMP *cpi,
   int target_rate = cpi->rc.sb64_target_rate << 8;   // convert to bits << 8
 
   const int mi_offset = mi_row * cm->mi_cols + mi_col;
-  const int bw = 1 << mi_width_log2(BLOCK_64X64);
-  const int bh = 1 << mi_height_log2(BLOCK_64X64);
+  const int bw = num_8x8_blocks_wide_lookup[BLOCK_64X64];
+  const int bh = num_8x8_blocks_high_lookup[BLOCK_64X64];
   const int xmis = MIN(cm->mi_cols - mi_col, bw);
   const int ymis = MIN(cm->mi_rows - mi_row, bh);
   int complexity_metric = 64;