summaryrefslogtreecommitdiff
path: root/vp8/decoder/decodframe.c
diff options
context:
space:
mode:
authorJohn Koleszar <jkoleszar@google.com>2012-01-12 16:55:44 -0800
committerJohn Koleszar <jkoleszar@google.com>2012-01-30 12:08:22 -0800
commitab77b4e8982740fe519ac116721c9c549ea60d31 (patch)
tree9d5388a401cd5cf7d948596466c17efa3f66e8b0 /vp8/decoder/decodframe.c
parent55f74c59c735b589f253ba1427a1fec1f6837039 (diff)
downloadlibvpx-ab77b4e8982740fe519ac116721c9c549ea60d31.tar
libvpx-ab77b4e8982740fe519ac116721c9c549ea60d31.tar.gz
libvpx-ab77b4e8982740fe519ac116721c9c549ea60d31.tar.bz2
libvpx-ab77b4e8982740fe519ac116721c9c549ea60d31.zip
RTCD: add remaining IDCT functions
This commit continues the process of converting to the new RTCD system. Change-Id: I03c4dbf30dfd3558b0e256ff9d3ff4c012aadc80
Diffstat (limited to 'vp8/decoder/decodframe.c')
-rw-r--r--vp8/decoder/decodframe.c7
1 files changed, 3 insertions, 4 deletions
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;
}