summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-04-23 23:38:54 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-04-23 23:38:54 +0000
commit44f54ceb3084eb8cb5ba96887ecb0041dec9a520 (patch)
tree952a9a3ec75da3e55c49d32efa80e3ab03de252f /libavcodec/Makefile
parent1671083f55132a48154b9f898c1cf4308ded17aa (diff)
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
ported to ffmpeg by (ja2morri at csclub dot uwaterloo dot ca (james morrison)) useable under LGPL with their agreement Originally committed as revision 3048 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index c8f84d5d00..1af656dbac 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -161,6 +161,11 @@ ifeq ($(TARGET_ARCH_SH4),yes)
OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o
endif
+ifeq ($(TARGET_ARCH_SPARC),yes)
+OBJS+=sparc/dsputil_vis.o
+CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc
+endif
+
SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
OBJS := $(OBJS) $(ASM_OBJS)