comparison Makefile @ 744:2f7da29ede37 libavcodec

Move Alpha optimized IDCT to own file. Based on a patch by Mns Rullgrd <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.
author mellum
date Fri, 11 Oct 2002 23:01:16 +0000
parents b24ea84b23e2
children 25d7fb7c89be
comparison
equal deleted inserted replaced
743:4cf7173a004e 744:2f7da29ede37
65 CFLAGS += $(MLIB_INC) 65 CFLAGS += $(MLIB_INC)
66 endif 66 endif
67 67
68 # alpha specific stuff 68 # alpha specific stuff
69 ifeq ($(TARGET_ARCH_ALPHA),yes) 69 ifeq ($(TARGET_ARCH_ALPHA),yes)
70 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o alpha/motion_est_alpha.o 70 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \
71 alpha/simple_idct_alpha.o alpha/motion_est_alpha.o
71 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o 72 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o
72 CFLAGS += -fforce-addr -freduce-all-givs 73 CFLAGS += -fforce-addr -freduce-all-givs
73 endif 74 endif
74 75
75 ifeq ($(TARGET_ARCH_POWERPC),yes) 76 ifeq ($(TARGET_ARCH_POWERPC),yes)