ref: 02d8cbaa152068b0964926e42289eef30c8038b5
parent: b2d8d58cf0c175db8801dd63e3b1d3b1ba85be0b
parent: 7c5eb6d5da0e69db7b8b2d4822b5ded0905c2cf0
author: Ronald S. Bultje <rbultje@google.com>
date: Mon Apr 29 08:41:53 EDT 2013
Merge "Fix mi_row argument to update_stats()." into experimental
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -828,7 +828,7 @@
output_enabled, mi_row, mi_col + (i << CONFIG_SB8X8),
BLOCK_SIZE_SB16X32);
if (output_enabled) {
- update_stats(cpi, mi_row, mi_col + i);
+ update_stats(cpi, mi_row, mi_col + (i << CONFIG_SB8X8));
(*tp)->token = EOSB_TOKEN;
(*tp)++;
--
⑨