From d007446b3f4c9b9552a16fea4e8b2541e8ed5b95 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Fri, 2 Aug 2013 11:45:21 -0700 Subject: Replacing long block size enum values with shorter ones (2). Change-Id: I428c4d42212b757112e3acfe5b81314cfbb5fd6b --- vp9/encoder/vp9_encodemv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vp9/encoder/vp9_encodemv.c') diff --git a/vp9/encoder/vp9_encodemv.c b/vp9/encoder/vp9_encodemv.c index 2f5e16ccf..1c6fa3a3d 100644 --- a/vp9/encoder/vp9_encodemv.c +++ b/vp9/encoder/vp9_encodemv.c @@ -478,7 +478,7 @@ void vp9_update_nmv_count(VP9_COMP *cpi, MACROBLOCK *x, const int num_4x4_blocks_high = num_4x4_blocks_high_lookup[mbmi->sb_type]; int idx, idy; - if (mbmi->sb_type < BLOCK_SIZE_SB8X8) { + if (mbmi->sb_type < BLOCK_8X8) { PARTITION_INFO *pi = x->partition_info; for (idy = 0; idy < 2; idy += num_4x4_blocks_high) { for (idx = 0; idx < 2; idx += num_4x4_blocks_wide) { -- cgit v1.2.3