diff options
Diffstat (limited to 'third_party/aom/av1/encoder/aq_variance.c')
-rw-r--r-- | third_party/aom/av1/encoder/aq_variance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/aom/av1/encoder/aq_variance.c b/third_party/aom/av1/encoder/aq_variance.c index ab9b3790b..84d967215 100644 --- a/third_party/aom/av1/encoder/aq_variance.c +++ b/third_party/aom/av1/encoder/aq_variance.c @@ -151,8 +151,8 @@ static unsigned int block_variance(const AV1_COMP *const cpi, MACROBLOCK *x, (xd->mb_to_bottom_edge < 0) ? ((-xd->mb_to_bottom_edge) >> 3) : 0; if (right_overflow || bottom_overflow) { - const int bw = 8 * mi_size_wide[bs] - right_overflow; - const int bh = 8 * mi_size_high[bs] - bottom_overflow; + const int bw = MI_SIZE * mi_size_wide[bs] - right_overflow; + const int bh = MI_SIZE * mi_size_high[bs] - bottom_overflow; int avg; #if CONFIG_HIGHBITDEPTH if (xd->cur_buf->flags & YV12_FLAG_HIGHBITDEPTH) { |