Commit 0e704ee7 authored by diego's avatar diego

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.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17440 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent a9d5b110
......@@ -402,12 +402,10 @@ OBJS-$(HAVE_PTHREADS) += pthread.o
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 \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment