aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorFalk Hüffner <mellum@users.sourceforge.net>2002-10-11 23:01:16 +0000
committerFalk Hüffner <mellum@users.sourceforge.net>2002-10-11 23:01:16 +0000
commit8b313a47871a02146ab093b3eff31636413dea13 (patch)
tree2e8ffad9c3fe3d8d12e270a46c496ab15e7dd2fc /libavcodec/Makefile
parentbb15f7fdd5c0c5f200f89fc9e47a3ff94e567e36 (diff)
downloadffmpeg-8b313a47871a02146ab093b3eff31636413dea13.tar.gz
Move Alpha optimized IDCT to own file. Based on a patch by Måns
Rullgård <mru@users.sourceforge.net>. I've left out the idctCol2 part, because W4 has recently been decreed to be 16383, and also I doubt it will give a noticeable speedup. Originally committed as revision 1029 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 c956f052d7..286e5285b7 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -67,7 +67,8 @@ endif
# alpha specific stuff
ifeq ($(TARGET_ARCH_ALPHA),yes)
-OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o alpha/motion_est_alpha.o
+OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
+ alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
CFLAGS += -fforce-addr -freduce-all-givs
endif