summaryrefslogtreecommitdiff
path: root/vp8/decoder/decodframe.c
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/decodframe.c
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/decodframe.c')
-rw-r--r--vp8/decoder/decodframe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/decoder/decodframe.c b/vp8/decoder/decodframe.c
index 57b781a11..963939cf0 100644
--- a/vp8/decoder/decodframe.c
+++ b/vp8/decoder/decodframe.c
@@ -408,7 +408,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd,
#if CONFIG_T8X8
if( tx_type == TX_8X8 )
{
- DEQUANT_INVOKE(&pbi->dequant, block_8x8)(b);
+ DEQUANT_INVOKE(&pbi->dequant, block_2x2)(b);
#ifdef DEC_DEBUG
if (dec_debug)
{