diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-13 16:04:41 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-13 16:04:41 +0000 |
commit | a88fc5c0408f78d78d96d298fdc15213e6bfb541 (patch) | |
tree | 487e2cc4753bdd648141d1cddefd7545a5a9df15 /libavcodec | |
parent | 68a205edef062ab8f583a40ab8607a28faedb3b2 (diff) | |
download | ffmpeg-a88fc5c0408f78d78d96d298fdc15213e6bfb541.tar.gz |
Remove intrinsics checks, they are no longer used.
partly based on a patch by Zuxy Meng, zuxy.meng gmail com
Originally committed as revision 6684 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 94aa96ad27..3d961b8fa1 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -339,19 +339,6 @@ endif ifeq ($(CONFIG_CAVS_DECODER),yes) OBJS += i386/cavsdsp_mmx.o endif -ifeq ($(TARGET_BUILTIN_VECTOR),yes) -i386/fft_sse.o: CFLAGS+= -msse -depend: CFLAGS+= -msse -endif -ifeq ($(TARGET_BUILTIN_3DNOW),yes) -i386/fft_3dn.o: CFLAGS+= -m3dnow -ifeq ($(TARGET_ARCH_X86),yes) -i386/fft_3dn2.o: CFLAGS+= -march=athlon -endif -ifeq ($(TARGET_ARCH_X86_64),yes) -i386/fft_3dn2.o: CFLAGS+= -march=k8 -endif -endif endif # armv4l specific stuff |