ref: 26d47e076a75573ec74facb283a51c42a9502f32
parent: 6fd9d0244c7d8941ce0004bcd2efce5d6676bef5
author: Wan-Teh Chang <wtc@google.com>
date: Fri Aug 3 10:19:29 EDT 2018
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
--- a/vp9/common/vp9_common_data.c
+++ b/vp9/common/vp9_common_data.c
@@ -28,7 +28,7 @@
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 };