From 26d47e076a75573ec74facb283a51c42a9502f32 Mon Sep 17 00:00:00 2001 From: Wan-Teh Chang Date: Fri, 3 Aug 2018 14:19:29 -0700 Subject: [PATCH] Fix typos in the comment for size_group_lookup. "b_width_log2" and "b_height_log2" should be "b_width_log2_lookup" and "b_height_log2_lookup", respectively. Change-Id: I3ad49e45007cd9fcf5dd463c7d01e22745939231 --- vp9/common/vp9_common_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vp9/common/vp9_common_data.c b/vp9/common/vp9_common_data.c index 4a10833..809d731 100644 --- a/vp9/common/vp9_common_data.c +++ b/vp9/common/vp9_common_data.c @@ -28,7 +28,7 @@ const uint8_t num_8x8_blocks_wide_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 1, 2, 2, const uint8_t num_8x8_blocks_high_lookup[BLOCK_SIZES] = { 1, 1, 1, 1, 2, 1, 2, 4, 2, 4, 8, 4, 8 }; -// VPXMIN(3, VPXMIN(b_width_log2(bsize), b_height_log2(bsize))) +// VPXMIN(3, VPXMIN(b_width_log2_lookup(bsize), b_height_log2_lookup(bsize))) const uint8_t size_group_lookup[BLOCK_SIZES] = { 0, 0, 0, 1, 1, 1, 2, 2, 2, 3, 3, 3, 3 }; -- 2.7.4