summaryrefslogtreecommitdiffstats
path: root/mp3lib/Makefile
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-27 17:21:23 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-07-27 17:21:23 +0000
commit35f296e306b308a07769cc0991e2001ed4bcc063 (patch)
tree9d0d010f9a2a4a16adaec4185d2c04cf7bc999a7 /mp3lib/Makefile
parent748cbb6290171dccc57146cfd3a23c81d839a0dd (diff)
downloadmpv-35f296e306b308a07769cc0991e2001ed4bcc063.tar.bz2
mpv-35f296e306b308a07769cc0991e2001ed4bcc063.tar.xz
Beginning sse optimization of dct code.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1394 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib/Makefile')
-rw-r--r--mp3lib/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/mp3lib/Makefile b/mp3lib/Makefile
index 0ff48ca059..ed61c31604 100644
--- a/mp3lib/Makefile
+++ b/mp3lib/Makefile
@@ -12,6 +12,10 @@ ifeq ($(TARGET_MMX),yes)
SRCS += decode_MMX.s dct64_MMX.s tabinit_MMX.s
OBJS += decode_MMX.o dct64_MMX.o tabinit_MMX.o
endif
+ifeq ($(TARGET_SSE),yes)
+SRCS += dct64_sse.s
+OBJS += dct64_sse.o
+endif
ifeq ($(TARGET_3DNOW),yes)
SRCS += dct36_3dnow.s dct64_3dnow.s
OBJS += dct36_3dnow.o dct64_3dnow.o