From 7a000715767c3765575977d77e3d22d2e763450b Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Thu, 7 Jun 2012 17:25:54 -0700 Subject: Adds x86inc.asm and update idct/dequant mmx Updates idct/dequant mmx assembly to work with vpnext instead of vp8. Also adds x86inc.asm Change-Id: I6e147d5e89177ae449271e97e50d082eb11b078e --- vp8/common/x86/idct_x86.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vp8/common/x86/idct_x86.h') diff --git a/vp8/common/x86/idct_x86.h b/vp8/common/x86/idct_x86.h index f6e568cdc..062149368 100644 --- a/vp8/common/x86/idct_x86.h +++ b/vp8/common/x86/idct_x86.h @@ -20,22 +20,22 @@ */ #if HAVE_MMX -extern prototype_idct(vp8_short_idct4x4llm_1_mmx); -extern prototype_idct(vp8_short_idct4x4llm_mmx); -extern prototype_idct_scalar_add(vp8_dc_only_idct_add_mmx); +extern prototype_idct(vpx_short_idct4x4llm_1_mmx); +extern prototype_idct(vpx_short_idct4x4llm_mmx); +extern prototype_idct_scalar_add(vpx_dc_only_idct_add_mmx); extern prototype_second_order(vp8_short_inv_walsh4x4_mmx); extern prototype_second_order(vp8_short_inv_walsh4x4_1_mmx); #if !CONFIG_RUNTIME_CPU_DETECT #undef vp8_idct_idct1 -#define vp8_idct_idct1 vp8_short_idct4x4llm_1_mmx +#define vp8_idct_idct1 vpx_short_idct4x4llm_1_mmx #undef vp8_idct_idct16 -#define vp8_idct_idct16 vp8_short_idct4x4llm_mmx +#define vp8_idct_idct16 vpx_short_idct4x4llm_mmx #undef vp8_idct_idct1_scalar_add -#define vp8_idct_idct1_scalar_add vp8_dc_only_idct_add_mmx +#define vp8_idct_idct1_scalar_add vpx_dc_only_idct_add_mmx #undef vp8_idct_iwalsh16 #define vp8_idct_iwalsh16 vp8_short_inv_walsh4x4_mmx -- cgit v1.2.3