summaryrefslogtreecommitdiff
path: root/vp8/common/generic/systemdependent.c
diff options
context:
space:
mode:
Diffstat (limited to 'vp8/common/generic/systemdependent.c')
-rw-r--r--vp8/common/generic/systemdependent.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/vp8/common/generic/systemdependent.c b/vp8/common/generic/systemdependent.c
index 01d76206d..05c54fb60 100644
--- a/vp8/common/generic/systemdependent.c
+++ b/vp8/common/generic/systemdependent.c
@@ -10,6 +10,7 @@
#include "vpx_config.h"
+#include "vpx_rtcd.h"
#include "vp8/common/subpixel.h"
#include "vp8/common/loopfilter.h"
#include "vp8/common/recon.h"
@@ -70,13 +71,6 @@ void vp8_machine_specific_config(VP8_COMMON *ctx)
VP8_COMMON_RTCD *rtcd = &ctx->rtcd;
- rtcd->dequant.block = vp8_dequantize_b_c;
- rtcd->dequant.idct_add = vp8_dequant_idct_add_c;
- rtcd->dequant.idct_add_y_block = vp8_dequant_idct_add_y_block_c;
- rtcd->dequant.idct_add_uv_block =
- vp8_dequant_idct_add_uv_block_c;
-
-
rtcd->idct.idct16 = vp8_short_idct4x4llm_c;
rtcd->idct.idct1_scalar_add = vp8_dc_only_idct_add_c;
rtcd->idct.iwalsh1 = vp8_short_inv_walsh4x4_1_c;
@@ -138,4 +132,6 @@ void vp8_machine_specific_config(VP8_COMMON *ctx)
#if CONFIG_MULTITHREAD
ctx->processor_core_count = get_cpu_count();
#endif /* CONFIG_MULTITHREAD */
+
+ vpx_rtcd();
}