From ab77b4e8982740fe519ac116721c9c549ea60d31 Mon Sep 17 00:00:00 2001 From: John Koleszar Date: Thu, 12 Jan 2012 16:55:44 -0800 Subject: RTCD: add remaining IDCT functions This commit continues the process of converting to the new RTCD system. Change-Id: I03c4dbf30dfd3558b0e256ff9d3ff4c012aadc80 --- vp8/decoder/decodframe.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'vp8/decoder/decodframe.c') diff --git a/vp8/decoder/decodframe.c b/vp8/decoder/decodframe.c index 0de9c4314..f90f2420b 100644 --- a/vp8/decoder/decodframe.c +++ b/vp8/decoder/decodframe.c @@ -32,7 +32,6 @@ #include "error_concealment.h" #endif #include "vpx_mem/vpx_mem.h" -#include "vp8/common/idct.h" #include "vp8/common/threading.h" #include "decoderthreading.h" #include "dboolhuff.h" @@ -200,7 +199,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, } else { - IDCT_INVOKE(RTCD_VTABLE(idct), idct1_scalar_add) + vp8_dc_only_idct_add (b->qcoeff[0] * DQC[0], *(b->base_dst) + b->dst, b->dst_stride, *(b->base_dst) + b->dst, b->dst_stride); @@ -239,7 +238,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, { vp8_dequantize_b(b, xd->dequant_y2); - IDCT_INVOKE(RTCD_VTABLE(idct), iwalsh16)(&b->dqcoeff[0], + vp8_short_inv_walsh4x4(&b->dqcoeff[0], xd->qcoeff); ((int *)b->qcoeff)[0] = 0; ((int *)b->qcoeff)[1] = 0; @@ -253,7 +252,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, else { b->dqcoeff[0] = b->qcoeff[0] * xd->dequant_y2[0]; - IDCT_INVOKE(RTCD_VTABLE(idct), iwalsh1)(&b->dqcoeff[0], + vp8_short_inv_walsh4x4_1(&b->dqcoeff[0], xd->qcoeff); ((int *)b->qcoeff)[0] = 0; } -- cgit v1.2.3