Index: source/libvpx/vp8/vp8_common.mk |
diff --git a/source/libvpx/vp8/vp8_common.mk b/source/libvpx/vp8/vp8_common.mk |
index 9b11c0da32936b43cc717f12b2a9e3c53b094eef..b4c814075c7500efffa07d2f173084def90126dd 100644 |
--- a/source/libvpx/vp8/vp8_common.mk |
+++ b/source/libvpx/vp8/vp8_common.mk |
@@ -15,6 +15,7 @@ VP8_COMMON_SRCS-yes += common/onyxd.h |
VP8_COMMON_SRCS-yes += common/alloccommon.c |
VP8_COMMON_SRCS-yes += common/blockd.c |
VP8_COMMON_SRCS-yes += common/coefupdateprobs.h |
+VP8_COMMON_SRCS-yes += common/copy_c.c |
VP8_COMMON_SRCS-yes += common/debugmodes.c |
VP8_COMMON_SRCS-yes += common/default_coef_probs.h |
VP8_COMMON_SRCS-yes += common/dequantize.c |
@@ -60,7 +61,6 @@ VP8_COMMON_SRCS-yes += common/quant_common.c |
VP8_COMMON_SRCS-yes += common/reconinter.c |
VP8_COMMON_SRCS-yes += common/reconintra.c |
VP8_COMMON_SRCS-yes += common/reconintra4x4.c |
-VP8_COMMON_SRCS-yes += common/sad_c.c |
VP8_COMMON_SRCS-yes += common/setupintrarecon.c |
VP8_COMMON_SRCS-yes += common/swapyv12buffer.c |
VP8_COMMON_SRCS-yes += common/variance_c.c |
@@ -85,26 +85,23 @@ VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/idctllm_mmx.asm |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/iwalsh_mmx.asm |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/loopfilter_mmx.asm |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/recon_mmx.asm |
-VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/sad_mmx.asm |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/subpixel_mmx.asm |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/variance_mmx.c |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/variance_impl_mmx.asm |
+VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/copy_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idct_blk_sse2.c |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/idctllm_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_wrapper_sse2.c |
-VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/sad_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/subpixel_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/loopfilter_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/iwalsh_sse2.asm |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_sse2.c |
VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_impl_sse2.asm |
-VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/sad_sse3.asm |
-VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/sad_ssse3.asm |
+VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/copy_sse3.asm |
VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/subpixel_ssse3.asm |
VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_ssse3.c |
VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/variance_impl_ssse3.asm |
-VP8_COMMON_SRCS-$(HAVE_SSE4_1) += common/x86/sad_sse4.asm |
ifeq ($(CONFIG_POSTPROC),yes) |
VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/postproc_mmx.asm |
@@ -148,7 +145,6 @@ VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/intra4x4_predict_v6$(ASM) |
VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/dequant_idct_v6$(ASM) |
VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/dequantize_v6$(ASM) |
VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/idct_blk_v6.c |
-VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/vp8_sad16x16_armv6$(ASM) |
VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/vp8_variance8x8_armv6$(ASM) |
VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/vp8_variance16x16_armv6$(ASM) |
VP8_COMMON_SRCS-$(HAVE_MEDIA) += common/arm/armv6/vp8_variance_halfpixvar16x16_h_armv6$(ASM) |
@@ -170,7 +166,6 @@ VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimplehorizontaledge_ |
VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/loopfiltersimpleverticaledge_neon.c |
VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/mbloopfilter_neon.c |
VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/reconintra_neon.c |
-VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sad_neon.c |
VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/shortidct4x4llm_neon.c |
VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/sixtappredict_neon.c |
VP8_COMMON_SRCS-$(HAVE_NEON) += common/arm/neon/variance_neon.c |