diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2003-01-07 17:48:14 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2003-01-07 17:48:14 +0000 |
commit | 923ceff8ef9d393560129482728355c6091a6c21 (patch) | |
tree | 39548dcbacd9255d1d6182ecdc9e0da3988f748f /libavcodec | |
parent | b35a02d5278f1050f64020382635ae181909bb61 (diff) | |
download | ffmpeg-923ceff8ef9d393560129482728355c6091a6c21.tar.gz |
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
Originally committed as revision 1415 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 4652aeb276..0a9c3f0cb5 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -50,7 +50,7 @@ ifeq ($(TARGET_MMX),yes) OBJS += i386/fdct_mmx.o i386/cputest.o \ i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ i386/idct_mmx.o i386/motion_est_mmx.o \ - i386/simple_idct_mmx.o + i386/simple_idct_mmx.o i386/fft_sse.o endif # armv4l specific stuff @@ -110,14 +110,6 @@ $(SLIB): $(OBJS) dsputil.o: dsputil.c dsputil.h -# specific sse code -%_sse.o : %_sse.c - $(CC) $(CFLAGS) -msse -c -o $@ $< - -# specific 3dnow code -%_3dnow.o : %_3dnow.c - $(CC) $(CFLAGS) -m3dnow -c -o $@ $< - %.o: %.c $(CC) $(CFLAGS) -c -o $@ $< @@ -174,7 +166,7 @@ dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\ motion-test: motion_test.o $(LIB) $(CC) -o $@ $^ -lm -fft-test: fft-test.o fft.o mdct.o +fft-test: fft-test.o $(LIB) $(CC) -o $@ $^ -lm install: all |