summaryrefslogtreecommitdiff
path: root/libavcodec/Makefile
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-11-20 22:50:13 +0000
committerDiego Biurrun <diego@biurrun.de>2008-11-20 22:50:13 +0000
commit0d2d0f97a58d12d5804bf913348e498fac2cd25c (patch)
treefbd8e0430acd7ed99e34bc7278dceb44e81dbfee /libavcodec/Makefile
parentd785a6706674adf596f3ecbea4a7de5f6e588a1e (diff)
Move FFT-specific MMX optimizations out of the 'ifdef HAVE_MMX' block.
The MMX dependency is already handled by configure. Originally committed as revision 15895 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/Makefile')
-rw-r--r--libavcodec/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index 1c5999f37b..1ee8425e47 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -399,14 +399,14 @@ OBJS-$(HAVE_MMX) += i386/cpuid.o \
i386/mpegvideo_mmx.o \
i386/simple_idct_mmx.o \
-ifdef HAVE_MMX
-OBJS-$(CONFIG_CAVS_DECODER) += i386/cavsdsp_mmx.o
-OBJS-$(CONFIG_ENCODERS) += i386/dsputilenc_mmx.o
OBJS-$(CONFIG_FFT_MMX) += i386/fft_3dn.o \
i386/fft_3dn2.o \
i386/fft_mmx.o \
i386/fft_sse.o \
+ifdef HAVE_MMX
+OBJS-$(CONFIG_CAVS_DECODER) += i386/cavsdsp_mmx.o
+OBJS-$(CONFIG_ENCODERS) += i386/dsputilenc_mmx.o
OBJS-$(CONFIG_FLAC_ENCODER) += i386/flacdsp_mmx.o
OBJS-$(CONFIG_GPL) += i386/idct_mmx.o
OBJS-$(CONFIG_SNOW_DECODER) += i386/snowdsp_mmx.o