summaryrefslogtreecommitdiff
path: root/vp8/common/generic/systemdependent.c
diff options
context:
space:
mode:
authorDeb Mukherjee <debargha@google.com>2011-02-14 14:18:18 -0800
committerYaowu Xu <yaowu@google.com>2011-07-20 09:49:22 -0700
commit08f64718905efe994a207af95b1c276c104e4113 (patch)
tree55ec9499a169ab513b810f8fa623df4016c6687c /vp8/common/generic/systemdependent.c
parent8e464cc4c2d02e5daa68a45830f053c8a236ab6f (diff)
downloadlibvpx-08f64718905efe994a207af95b1c276c104e4113.tar
libvpx-08f64718905efe994a207af95b1c276c104e4113.tar.gz
libvpx-08f64718905efe994a207af95b1c276c104e4113.tar.bz2
libvpx-08f64718905efe994a207af95b1c276c104e4113.zip
Add 8x8 transform to experimental branch
Please refer to previous commit messages for detailed info: https://on2-git.corp.google.com/g/#change,5940 https://on2-git.corp.google.com/g/#change,6045 Change-Id: I8b16992f2f69c5a808ad40a3e32ef589cce7c59d
Diffstat (limited to 'vp8/common/generic/systemdependent.c')
-rw-r--r--vp8/common/generic/systemdependent.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/vp8/common/generic/systemdependent.c b/vp8/common/generic/systemdependent.c
index 47b13c755..1acc0157b 100644
--- a/vp8/common/generic/systemdependent.c
+++ b/vp8/common/generic/systemdependent.c
@@ -75,7 +75,13 @@ void vp8_machine_specific_config(VP8_COMMON *ctx)
rtcd->idct.idct1_scalar_add = vp8_dc_only_idct_add_c;
rtcd->idct.iwalsh1 = vp8_short_inv_walsh4x4_1_c;
rtcd->idct.iwalsh16 = vp8_short_inv_walsh4x4_c;
-
+#if CONFIG_T8X8
+ rtcd->idct.idct8 = vp8_short_idct8x8_c;
+ rtcd->idct.idct8_1 = vp8_short_idct8x8_1_c;
+ rtcd->idct.idct1_scalar_add_8x8 = vp8_dc_only_idct_add_8x8_c;
+ rtcd->idct.ihaar2 = vp8_short_ihaar2x2_c;
+ rtcd->idct.ihaar2_1 = vp8_short_ihaar2x2_1_c;
+#endif
rtcd->recon.copy16x16 = vp8_copy_mem16x16_c;
rtcd->recon.copy8x8 = vp8_copy_mem8x8_c;
rtcd->recon.copy8x4 = vp8_copy_mem8x4_c;