diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-07-06 17:48:23 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-07-06 17:48:23 +0000 |
commit | 881fd7a62f6f1d52beee62fa570088935935b2af (patch) | |
tree | 5ca3e03dc9149559571fe7e908c8076b5c4358f1 /libavcodec/x86/Makefile | |
parent | 4dcc4f8eaa23dc3ff85f6b4eed58d719e50cbe92 (diff) | |
download | ffmpeg-881fd7a62f6f1d52beee62fa570088935935b2af.tar.gz |
Move SSE optimized 32-point DCT to its own file. Should fix breakage with YASM
disabled.
Originally committed as revision 24078 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/Makefile')
-rw-r--r-- | libavcodec/x86/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/Makefile b/libavcodec/x86/Makefile index 7b966e25a6..0d187b1aa8 100644 --- a/libavcodec/x86/Makefile +++ b/libavcodec/x86/Makefile @@ -46,3 +46,5 @@ OBJS-$(HAVE_MMX) += x86/cpuid.o \ x86/motion_est_mmx.o \ x86/mpegvideo_mmx.o \ x86/simple_idct_mmx.o \ + +MMX-OBJS-$(CONFIG_DCT) += x86/dct32_sse.o |