summaryrefslogtreecommitdiff
path: root/vp8/common/x86/idct_x86.h
diff options
context:
space:
mode:
authorDaniel Kang <ddkang@google.com>2012-06-07 17:25:54 -0700
committerDaniel Kang <ddkang@google.com>2012-06-12 15:04:03 -0700
commit7a000715767c3765575977d77e3d22d2e763450b (patch)
treec97136de2442e0d7d1b68ea3057476c401dad3e9 /vp8/common/x86/idct_x86.h
parent04fa2ecdf24a1c9656c37b29c73a0a4a4a4267c0 (diff)
downloadlibvpx-7a000715767c3765575977d77e3d22d2e763450b.tar
libvpx-7a000715767c3765575977d77e3d22d2e763450b.tar.gz
libvpx-7a000715767c3765575977d77e3d22d2e763450b.tar.bz2
libvpx-7a000715767c3765575977d77e3d22d2e763450b.zip
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
Diffstat (limited to 'vp8/common/x86/idct_x86.h')
-rw-r--r--vp8/common/x86/idct_x86.h12
1 files changed, 6 insertions, 6 deletions
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