Fix mi_row argument to update_stats().

This doesn't change output, because the argument isn't actually used
ATM. However, we should fix it for consistency.

Change-Id: I7b7326a8e92c0d411c999ec2c781204b516ed53d
This commit is contained in:
Ronald S. Bultje 2013-04-27 15:59:37 -07:00
Родитель 247c4f769c
Коммит 7c5eb6d5da
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -828,7 +828,7 @@ static void encode_sb(VP9_COMP *cpi,
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)++;