From c0038328830d7b341c28d7c99b0236a33617fd21 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Wed, 13 Apr 2011 20:57:29 +0200 Subject: swscale: move away x86 specific code from rgb2rgb Keep only the plain C code in the main rgb2rgb.c and move the x86 specific optimizations to x86/rgb2rgb.c Change the initialization pattern a little so some of it can be factorized to behave more like dsputils. --- libswscale/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libswscale/Makefile') diff --git a/libswscale/Makefile b/libswscale/Makefile index 6976079686..7f8f721e45 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -12,7 +12,8 @@ OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \ bfin/yuv2rgb_bfin.o OBJS-$(CONFIG_MLIB) += mlib/yuv2rgb_mlib.o OBJS-$(HAVE_ALTIVEC) += ppc/yuv2rgb_altivec.o -OBJS-$(HAVE_MMX) += x86/yuv2rgb_mmx.o +OBJS-$(HAVE_MMX) += x86/rgb2rgb.o \ + x86/yuv2rgb_mmx.o OBJS-$(HAVE_VIS) += sparc/yuv2rgb_vis.o TESTPROGS = colorspace swscale -- cgit v1.2.3