summaryrefslogtreecommitdiff
path: root/vp8/decoder/dequantize.h
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2011-11-10 12:54:22 -0800
committerYaowu Xu <yaowu@google.com>2011-11-11 09:01:16 -0800
commite01b39254b7289f124b2ba2b0fcdfb1e64aadd0c (patch)
tree6c88c8079c0254224920341aa414cf83398fa335 /vp8/decoder/dequantize.h
parent0c846f660289ea18a55be21ec9588e6f934d21fa (diff)
downloadlibvpx-e01b39254b7289f124b2ba2b0fcdfb1e64aadd0c.tar
libvpx-e01b39254b7289f124b2ba2b0fcdfb1e64aadd0c.tar.gz
libvpx-e01b39254b7289f124b2ba2b0fcdfb1e64aadd0c.tar.bz2
libvpx-e01b39254b7289f124b2ba2b0fcdfb1e64aadd0c.zip
changed function name for clarity
The dequantizer functions for 2nd order haar block had confusing 8x8 in their names. this commit fixed their name to avoid confusion. Change-Id: I6ae4e7888330865f831436313637d4395b1fc273
Diffstat (limited to 'vp8/decoder/dequantize.h')
-rw-r--r--vp8/decoder/dequantize.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/vp8/decoder/dequantize.h b/vp8/decoder/dequantize.h
index 5ae6f9619..c7344d394 100644
--- a/vp8/decoder/dequantize.h
+++ b/vp8/decoder/dequantize.h
@@ -100,10 +100,10 @@ extern prototype_dequant_idct_add_y_block(vp8_dequant_idct_add_y_block);
extern prototype_dequant_idct_add_uv_block(vp8_dequant_idct_add_uv_block);
#if CONFIG_T8X8
-#ifndef vp8_dequant_block_8x8
-#define vp8_dequant_block_8x8 vp8_dequantize_b_8x8_c
+#ifndef vp8_dequant_block_2x2
+#define vp8_dequant_block_2x2 vp8_dequantize_b_2x2_c
#endif
-extern prototype_dequant_block(vp8_dequant_block_8x8);
+extern prototype_dequant_block(vp8_dequant_block_2x2);
#ifndef vp8_dequant_idct_add_8x8
#define vp8_dequant_idct_add_8x8 vp8_dequant_idct_add_8x8_c
@@ -160,7 +160,7 @@ typedef struct
vp8_dequant_idct_add_y_block_fn_t idct_add_y_block;
vp8_dequant_idct_add_uv_block_fn_t idct_add_uv_block;
#if CONFIG_T8X8
- vp8_dequant_block_fn_t block_8x8;
+ vp8_dequant_block_fn_t block_2x2;
vp8_dequant_idct_add_fn_t idct_add_8x8;
vp8_dequant_dc_idct_add_fn_t dc_idct_add_8x8;
vp8_dequant_dc_idct_add_y_block_fn_t_8x8 dc_idct_add_y_block_8x8;