summaryrefslogtreecommitdiff
path: root/vp9/common/generic/systemdependent.c
diff options
context:
space:
mode:
authorJim Bankoski <jimbankoski@google.com>2012-11-21 19:55:16 -0800
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2012-11-21 19:55:16 -0800
commit91d703b2b21f40f27dceb57481a5bb92f5ece1d1 (patch)
treef7755bef95f567e71a2d2812e6ffe8ae448129c7 /vp9/common/generic/systemdependent.c
parenta5e542e74b30cbc8cb98b7badc93d7614930a76a (diff)
parent3338af41092added3024a4ed4b9934262a578433 (diff)
downloadlibvpx-91d703b2b21f40f27dceb57481a5bb92f5ece1d1.tar
libvpx-91d703b2b21f40f27dceb57481a5bb92f5ece1d1.tar.gz
libvpx-91d703b2b21f40f27dceb57481a5bb92f5ece1d1.tar.bz2
libvpx-91d703b2b21f40f27dceb57481a5bb92f5ece1d1.zip
Merge "remove subpixel invoke functions" into experimental
Diffstat (limited to 'vp9/common/generic/systemdependent.c')
-rw-r--r--vp9/common/generic/systemdependent.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/vp9/common/generic/systemdependent.c b/vp9/common/generic/systemdependent.c
index 51dfaea5f..958e1146b 100644
--- a/vp9/common/generic/systemdependent.c
+++ b/vp9/common/generic/systemdependent.c
@@ -35,36 +35,6 @@ void vp9_machine_specific_config(VP9_COMMON *ctx) {
rtcd->idct.idct16x16 = vp9_short_idct16x16_c;
rtcd->idct.idct10_16x16 = vp9_short_idct10_16x16_c;
- rtcd->subpix.eighttap16x16 = vp9_eighttap_predict16x16_c;
- rtcd->subpix.eighttap8x8 = vp9_eighttap_predict8x8_c;
- rtcd->subpix.eighttap_avg16x16 = vp9_eighttap_predict_avg16x16_c;
- rtcd->subpix.eighttap_avg8x8 = vp9_eighttap_predict_avg8x8_c;
- rtcd->subpix.eighttap_avg4x4 = vp9_eighttap_predict_avg4x4_c;
- rtcd->subpix.eighttap8x4 = vp9_eighttap_predict8x4_c;
- rtcd->subpix.eighttap4x4 = vp9_eighttap_predict_c;
- rtcd->subpix.eighttap16x16_sharp = vp9_eighttap_predict16x16_sharp_c;
- rtcd->subpix.eighttap8x8_sharp = vp9_eighttap_predict8x8_sharp_c;
- rtcd->subpix.eighttap_avg16x16_sharp = vp9_eighttap_predict_avg16x16_sharp_c;
- rtcd->subpix.eighttap_avg8x8_sharp = vp9_eighttap_predict_avg8x8_sharp_c;
- rtcd->subpix.eighttap_avg4x4_sharp = vp9_eighttap_predict_avg4x4_sharp_c;
- rtcd->subpix.eighttap8x4_sharp = vp9_eighttap_predict8x4_sharp_c;
- rtcd->subpix.eighttap4x4_sharp = vp9_eighttap_predict_sharp_c;
-
- rtcd->subpix.sixtap16x16 = vp9_sixtap_predict16x16_c;
- rtcd->subpix.sixtap8x8 = vp9_sixtap_predict8x8_c;
- rtcd->subpix.sixtap_avg16x16 = vp9_sixtap_predict_avg16x16_c;
- rtcd->subpix.sixtap_avg8x8 = vp9_sixtap_predict_avg8x8_c;
- rtcd->subpix.sixtap8x4 = vp9_sixtap_predict8x4_c;
- rtcd->subpix.sixtap4x4 = vp9_sixtap_predict_c;
- rtcd->subpix.sixtap_avg4x4 = vp9_sixtap_predict_avg_c;
- rtcd->subpix.bilinear16x16 = vp9_bilinear_predict16x16_c;
- rtcd->subpix.bilinear8x8 = vp9_bilinear_predict8x8_c;
- rtcd->subpix.bilinear_avg16x16 = vp9_bilinear_predict_avg16x16_c;
- rtcd->subpix.bilinear_avg8x8 = vp9_bilinear_predict_avg8x8_c;
- rtcd->subpix.bilinear8x4 = vp9_bilinear_predict8x4_c;
- rtcd->subpix.bilinear4x4 = vp9_bilinear_predict4x4_c;
- rtcd->subpix.bilinear_avg4x4 = vp9_bilinear_predict_avg4x4_c;
-
#if CONFIG_POSTPROC || (CONFIG_VP9_ENCODER && CONFIG_INTERNAL_STATS)
rtcd->postproc.down = vp9_mbpost_proc_down_c;
rtcd->postproc.across = vp9_mbpost_proc_across_ip_c;