summaryrefslogtreecommitdiffstats
path: root/postproc/Makefile
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-06-27 00:07:15 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-06-27 00:07:15 +0000
commit56164a0e7a174e9525210134aa7c4594a349db48 (patch)
treebdc9e3021f7e0c5a5f955f817adbc4aa0f541ba7 /postproc/Makefile
parentbf8c8c80673f5d1d55c5a418c28ec88d753181b0 (diff)
downloadmpv-56164a0e7a174e9525210134aa7c4594a349db48.tar.bz2
mpv-56164a0e7a174e9525210134aa7c4594a349db48.tar.xz
altivec yuv->rgb converter
orginal patch by (Marc Hoffman <mmh at pleasantst dot com>) critical fixes by (Reza Jelveh <reza.jelveh at tu-harburg dot de>) known bugs/issues, which should be fixed ASAP by someone who has a ppc: 0..255 vs. 16..235 unneeded recalculation of tables general cleaup, like removing double initalizing of variables git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12699 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc/Makefile')
-rw-r--r--postproc/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/postproc/Makefile b/postproc/Makefile
index b030c72854..06caa9ad1c 100644
--- a/postproc/Makefile
+++ b/postproc/Makefile
@@ -4,8 +4,13 @@ include ../config.mak
SWSLIB = libswscale.a
SWSSRCS=swscale.c rgb2rgb.c yuv2rgb.c
+
SWSOBJS=$(SWSSRCS:.c=.o)
+ifeq ($(TARGET_ALTIVEC),yes)
+SWSOBJS += yuv2rgb_altivec.o
+endif
+
CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. $(EXTRA_INC)
# -I/usr/X11R6/include/
@@ -44,3 +49,4 @@ swscale-example: swscale-example.o $(SWSLIB)
ifneq ($(wildcard .depend),)
include .depend
endif
+