summaryrefslogtreecommitdiff
path: root/vp8/common/generic
diff options
context:
space:
mode:
authorDaniel Kang <ddkang@google.com>2012-08-02 17:03:14 -0700
committerDaniel Kang <ddkang@google.com>2012-08-02 17:33:10 -0700
commitfed8a1837fd6b1e4e36495be8210bd63bfb2bb8f (patch)
tree7bc08b5f55292f699ec7565646a9512fdba2cb2d /vp8/common/generic
parent2914ab2e8b9fca26a430aed1dea56070621eb71e (diff)
downloadlibvpx-fed8a1837fd6b1e4e36495be8210bd63bfb2bb8f.tar
libvpx-fed8a1837fd6b1e4e36495be8210bd63bfb2bb8f.tar.gz
libvpx-fed8a1837fd6b1e4e36495be8210bd63bfb2bb8f.tar.bz2
libvpx-fed8a1837fd6b1e4e36495be8210bd63bfb2bb8f.zip
16x16 DCT blocks.
Set on all 16x16 intra/inter modes Features: - Butterfly fDCT/iDCT - Loop filter does not filter internal edges with 16x16 - Optimize coefficient function - Update coefficient probability function - RD - Entropy stats - 16x16 is a config option Have not tested with experiments. hd: 2.60% std-hd: 2.43% yt: 1.32% derf: 0.60% Change-Id: I96fb090517c30c5da84bad4fae602c3ec0c58b1c
Diffstat (limited to 'vp8/common/generic')
-rw-r--r--vp8/common/generic/systemdependent.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/vp8/common/generic/systemdependent.c b/vp8/common/generic/systemdependent.c
index df162234c..359a139e1 100644
--- a/vp8/common/generic/systemdependent.c
+++ b/vp8/common/generic/systemdependent.c
@@ -32,6 +32,9 @@ void vp8_machine_specific_config(VP8_COMMON *ctx) {
rtcd->idct.idct8 = vp8_short_idct8x8_c;
rtcd->idct.idct1_scalar_add_8x8 = vp8_dc_only_idct_add_8x8_c;
rtcd->idct.ihaar2 = vp8_short_ihaar2x2_c;
+#if CONFIG_TX16X16
+ rtcd->idct.idct16x16 = vp8_short_idct16x16_c;
+#endif
rtcd->recon.copy16x16 = vp8_copy_mem16x16_c;
rtcd->recon.copy8x8 = vp8_copy_mem8x8_c;
rtcd->recon.avg16x16 = vp8_avg_mem16x16_c;