summaryrefslogtreecommitdiff
path: root/vp8/decoder/threading.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/threading.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/threading.c')
-rw-r--r--vp8/decoder/threading.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vp8/decoder/threading.c b/vp8/decoder/threading.c
index b1932512a..bb7734013 100644
--- a/vp8/decoder/threading.c
+++ b/vp8/decoder/threading.c
@@ -199,7 +199,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, int mb_row, int m
}
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);
@@ -221,7 +221,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, int mb_row, int m
{
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;
@@ -235,7 +235,7 @@ static void decode_macroblock(VP8D_COMP *pbi, MACROBLOCKD *xd, int mb_row, int m
else
{
b->dqcoeff[0] = b->qcoeff[0] * xd->dequant_y2[0];
- IDCT_INVOKE(RTCD_VTABLE(idct), iwalsh1)(&b->dqcoeff[0], xd->qcoeff);
+ vp8_short_inv_walsh4x4_1(&b->dqcoeff[0], xd->qcoeff);
((int *)b->qcoeff)[0] = 0;
}