diff --git a/libvpx/vp8/common/x86/variance_mmx.c b/libvpx/vp8/common/x86/vp8_variance_mmx.c similarity index 100% rename from libvpx/vp8/common/x86/variance_mmx.c rename to libvpx/vp8/common/x86/vp8_variance_mmx.c diff --git a/libvpx/vp8/common/x86/variance_impl_mmx.asm b/libvpx/vp8/common/x86/vp8_variance_impl_mmx.asm similarity index 100% rename from libvpx/vp8/common/x86/variance_impl_mmx.asm rename to libvpx/vp8/common/x86/vp8_variance_impl_mmx.asm diff --git a/libvpx/vp8/common/x86/variance_sse2.c b/libvpx/vp8/common/x86/vp8_variance_sse2.c similarity index 100% rename from libvpx/vp8/common/x86/variance_sse2.c rename to libvpx/vp8/common/x86/vp8_variance_sse2.c diff --git a/libvpx/vp9/encoder/arm/neon/vp9_avg_neon.c b/libvpx/vp9/encoder/arm/neon/vp9enc_avg_neon.c similarity index 100% rename from libvpx/vp9/encoder/arm/neon/vp9_avg_neon.c rename to libvpx/vp9/encoder/arm/neon/vp9enc_avg_neon.c diff --git a/vp8/vp8_common.mk b/vp8/vp8_common.mk index c71d592f5..377d1a5c7 100644 --- a/libvpx/vp8/vp8_common.mk +++ b/libvpx/vp8/vp8_common.mk @@ -86,8 +86,8 @@ 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/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_MMX) += common/x86/vp8_variance_mmx.c +VP8_COMMON_SRCS-$(HAVE_MMX) += common/x86/vp8_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 @@ -96,7 +96,7 @@ VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/recon_wrapper_sse2.c 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/vp8_variance_sse2.c VP8_COMMON_SRCS-$(HAVE_SSE2) += common/x86/variance_impl_sse2.asm VP8_COMMON_SRCS-$(HAVE_SSE3) += common/x86/copy_sse3.asm VP8_COMMON_SRCS-$(HAVE_SSSE3) += common/x86/subpixel_ssse3.asm diff --git a/vp9/vp9cx.mk b/vp9/vp9cx.mk index 5415215c2..f1d48c962 100644 --- a/libvpx/vp9/vp9cx.mk +++ b/libvpx/vp9/vp9cx.mk @@ -147,7 +147,7 @@ VP9_CX_SRCS-$(HAVE_AVX2) += encoder/x86/vp9_variance_avx2.c ifneq ($(CONFIG_VP9_HIGHBITDEPTH),yes) VP9_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/vp9_dct_neon.c endif -VP9_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/vp9_avg_neon.c +VP9_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/vp9enc_avg_neon.c VP9_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/vp9_quantize_neon.c VP9_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/vp9_subtract_neon.c VP9_CX_SRCS-$(HAVE_NEON) += encoder/arm/neon/vp9_variance_neon.c