summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorWan-Teh Chang <wtc@google.com>2018-08-07 23:28:04 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-08-07 23:28:04 +0000
commita03465e44c71d9390243df81428b0d78126169f3 (patch)
tree1fe3133baa3822669815be2d50965d817eaeba43 /vp9
parente7cf9fd4446ed93ca91e18b5440f1f005a5228a9 (diff)
parent26d47e076a75573ec74facb283a51c42a9502f32 (diff)
downloadlibvpx-a03465e44c71d9390243df81428b0d78126169f3.tar
libvpx-a03465e44c71d9390243df81428b0d78126169f3.tar.gz
libvpx-a03465e44c71d9390243df81428b0d78126169f3.tar.bz2
libvpx-a03465e44c71d9390243df81428b0d78126169f3.zip
Merge "Fix typos in the comment for size_group_lookup."
Diffstat (limited to 'vp9')
-rw-r--r--vp9/common/vp9_common_data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/common/vp9_common_data.c b/vp9/common/vp9_common_data.c
index 4a1083322..809d7317c 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 };