[FFmpeg-cvslog] r17440 - trunk/libavcodec/Makefile

diego subversion
Thu Feb 19 00:32:41 CET 2009


Author: diego
Date: Thu Feb 19 00:32:41 2009
New Revision: 17440

Log:
The 3DNow! and SSE FFT optimizations depend on the yasm optimizations in
x86/fft_mmx.asm, so only build them if the latter is built.

Modified:
   trunk/libavcodec/Makefile

Modified: trunk/libavcodec/Makefile
==============================================================================
--- trunk/libavcodec/Makefile	Thu Feb 19 00:25:59 2009	(r17439)
+++ trunk/libavcodec/Makefile	Thu Feb 19 00:32:41 2009	(r17440)
@@ -402,12 +402,10 @@ OBJS-$(HAVE_PTHREADS)                  +
 OBJS-$(HAVE_W32THREADS)                += w32thread.o
 
 # processor-specific code
-FFT-OBJS-$(HAVE_AMD3DNOW)              += x86/fft_3dn.o
-FFT-OBJS-$(HAVE_AMD3DNOWEXT)           += x86/fft_3dn2.o
-FFT-OBJS-$(HAVE_SSE)                   += x86/fft_sse.o
-OBJS-$(CONFIG_FFT)                     += $(FFT-OBJS-yes)
-
-YASM-OBJS-$(CONFIG_FFT)                += x86/fft_mmx.o
+YASM-OBJS-FFT-$(HAVE_AMD3DNOW)         += x86/fft_3dn.o
+YASM-OBJS-FFT-$(HAVE_AMD3DNOWEXT)      += x86/fft_3dn2.o
+YASM-OBJS-FFT-$(HAVE_SSE)              += x86/fft_sse.o
+YASM-OBJS-$(CONFIG_FFT)                += x86/fft_mmx.o $(YASM-OBJS-FFT-yes)
 YASM-OBJS-$(CONFIG_GPL)                += x86/h264_deblock_sse2.o       \
                                           x86/h264_idct_sse2.o          \
 




More information about the ffmpeg-cvslog mailing list