summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-11 19:52:17 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-11 19:52:17 +0000
commit2912d9ee5718e0201828ba53ce05dd8687833ea0 (patch)
tree8e0bdde4894493d0b6309f091cdc547abb7afc73 /mp3lib
parent222ea2c463a96932d17f69ae6f701a908b93c957 (diff)
downloadmpv-2912d9ee5718e0201828ba53ce05dd8687833ea0.tar.bz2
mpv-2912d9ee5718e0201828ba53ce05dd8687833ea0.tar.xz
Remove pointless HAVE_ALTIVEC around the whole file, it is only compiled when
HAVE_ALTIVEC is set anyway. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25352 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/dct64_altivec.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/mp3lib/dct64_altivec.c b/mp3lib/dct64_altivec.c
index c2501f8ebc..9a012ad75e 100644
--- a/mp3lib/dct64_altivec.c
+++ b/mp3lib/dct64_altivec.c
@@ -11,8 +11,6 @@
#include "mpg123.h"
-#ifdef HAVE_ALTIVEC
-
#ifndef SYS_DARWIN
#include <altivec.h>
#endif
@@ -538,6 +536,3 @@ void dct64_altivec(real *a,real *b,real *c)
out1[0x10*13] = b1[0x17] + b1[0x1F];
out1[0x10*15] = b1[0x1F];
}
-
-#endif /* HAVE_ALTIVEC */
-