diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-07 18:15:48 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-07 18:15:48 +0000 |
commit | 8d268a7d4c4b4f58b5561e7384d91ee39a72d3a7 (patch) | |
tree | 20bc09db45303225c2b448a0242902ce67cfaec4 /libavcodec/Makefile | |
parent | 15e35d0d42b93014d228d344ffa538eb16270f19 (diff) | |
download | ffmpeg-8d268a7d4c4b4f58b5561e7384d91ee39a72d3a7.tar.gz |
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
Originally committed as revision 1417 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r-- | libavcodec/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 0a9c3f0cb5..35bd46e279 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -84,7 +84,8 @@ endif ifeq ($(TARGET_ALTIVEC),yes) CFLAGS += -faltivec -OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o +OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \ + ppc/fft_altivec.o endif SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |