From fe74c4286aca842aee5f89c76385e7d16018443e Mon Sep 17 00:00:00 2001 From: Johann Date: Wed, 24 Apr 2013 09:08:56 -0700 Subject: [PATCH] Rename quantize_sse2_intrinsics.c The only reason for the _intrinsics part of the file name was for the interim period where only one of the functions was redone and the base file name was the same. Change-Id: I7851154f1633d48821bee885b1cadb2148e65a23 --- .../x86/{quantize_sse2_intrinsics.c => quantize_sse2.c} | 0 vp8/vp8cx.mk | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename vp8/encoder/x86/{quantize_sse2_intrinsics.c => quantize_sse2.c} (100%) diff --git a/vp8/encoder/x86/quantize_sse2_intrinsics.c b/vp8/encoder/x86/quantize_sse2.c similarity index 100% rename from vp8/encoder/x86/quantize_sse2_intrinsics.c rename to vp8/encoder/x86/quantize_sse2.c diff --git a/vp8/vp8cx.mk b/vp8/vp8cx.mk index ca9f6a62e..7d1904aaf 100644 --- a/vp8/vp8cx.mk +++ b/vp8/vp8cx.mk @@ -89,12 +89,12 @@ VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/subtract_mmx.asm VP8_CX_SRCS-$(HAVE_MMX) += encoder/x86/vp8_enc_stubs_mmx.c VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/dct_sse2.asm VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/fwalsh_sse2.asm -VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2_intrinsics.c +VP8_CX_SRCS-$(HAVE_SSE2) += encoder/x86/quantize_sse2.c # TODO(johann) make this generic ifeq ($(HAVE_SSE2),yes) -vp8/encoder/x86/quantize_sse2_intrinsics.c.o: CFLAGS += -msse2 -vp8/encoder/x86/quantize_sse2_intrinsics.c.d: CFLAGS += -msse2 +vp8/encoder/x86/quantize_sse2.c.o: CFLAGS += -msse2 +vp8/encoder/x86/quantize_sse2.c.d: CFLAGS += -msse2 endif ifeq ($(CONFIG_TEMPORAL_DENOISING),yes) -- 2.40.0