aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorFalk Hüffner <mellum@users.sourceforge.net>2002-07-01 04:26:07 +0000
committerFalk Hüffner <mellum@users.sourceforge.net>2002-07-01 04:26:07 +0000
commitbb7d4939bae627bc9f917ae1d2870cfd4f571cde (patch)
tree5c58ae1a8f176551b6c8ceeb603a84a11562e26c /libavcodec/Makefile
parente09d12f4f6cdf0828ef853c396636dcf6e4cf10f (diff)
downloadffmpeg-bb7d4939bae627bc9f917ae1d2870cfd4f571cde.tar.gz
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
allows better scheduling of the memory accesses, and is portable among all compilers. Originally committed as revision 709 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index fd0903a725..3d69b4286c 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -63,10 +63,11 @@ endif
# alpha specific stuff
ifeq ($(TARGET_ARCH_ALPHA),yes)
OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o
+ASM_OBJS += alpha/dsputil_alpha_asm.o
CFLAGS += -Wa,-mpca56
endif
-SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.s)
+SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S)
OBJS := $(OBJS) $(ASM_OBJS)
LIB= libavcodec.a