Mercurial > libavcodec.hg
comparison Makefile @ 3175:c20c181e0eca libavcodec
3DNow! & Extended 3DNow! versions of FFT
Patch by Zuxy Meng, zuxy <<dot>> meng >>at<< gmail <<dot>> com
Minor non-functional diff-related fixes by me.
author | corey |
---|---|
date | Wed, 08 Mar 2006 04:13:55 +0000 |
parents | 0ebbd476ba32 |
children | 33110c1008a4 |
comparison
equal
deleted
inserted
replaced
3174:b65cbae9d940 | 3175:c20c181e0eca |
---|---|
328 ifeq ($(TARGET_MMX),yes) | 328 ifeq ($(TARGET_MMX),yes) |
329 OBJS += i386/fdct_mmx.o i386/cputest.o \ | 329 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
330 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ | 330 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
331 i386/idct_mmx.o i386/motion_est_mmx.o \ | 331 i386/idct_mmx.o i386/motion_est_mmx.o \ |
332 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ | 332 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ |
333 i386/vp3dsp_sse2.o | 333 i386/vp3dsp_sse2.o i386/fft_3dn.o i386/fft_3dn2.o |
334 ifeq ($(CONFIG_GPL),yes) | 334 ifeq ($(CONFIG_GPL),yes) |
335 OBJS += i386/idct_mmx_xvid.o | 335 OBJS += i386/idct_mmx_xvid.o |
336 endif | 336 endif |
337 ifdef TARGET_BUILTIN_VECTOR | 337 ifdef TARGET_BUILTIN_VECTOR |
338 i386/fft_sse.o: CFLAGS+= -msse | 338 i386/fft_sse.o: CFLAGS+= -msse |
339 depend: CFLAGS+= -msse | 339 depend: CFLAGS+= -msse |
340 endif | |
341 ifdef TARGET_BUILTIN_3DNOW | |
342 i386/fft_3dn.o: CFLAGS+= -m3dnow | |
343 i386/fft_3dn2.o: CFLAGS+= -march=athlon | |
340 endif | 344 endif |
341 endif | 345 endif |
342 | 346 |
343 # armv4l specific stuff | 347 # armv4l specific stuff |
344 ifeq ($(TARGET_ARCH_ARMV4L),yes) | 348 ifeq ($(TARGET_ARCH_ARMV4L),yes) |