Mercurial > mplayer.hg
comparison mp3lib/dct64_altivec.c @ 25324:f155e65885e1
Remove pointless HAVE_ALTIVEC around the whole file, it is only compiled when
HAVE_ALTIVEC is set anyway.
author | diego |
---|---|
date | Tue, 11 Dec 2007 19:52:17 +0000 |
parents | 2029204dd999 |
children | a7b716b53e9f |
comparison
equal
deleted
inserted
replaced
25323:8855a2568281 | 25324:f155e65885e1 |
---|---|
8 */ | 8 */ |
9 | 9 |
10 #define real float | 10 #define real float |
11 | 11 |
12 #include "mpg123.h" | 12 #include "mpg123.h" |
13 | |
14 #ifdef HAVE_ALTIVEC | |
15 | 13 |
16 #ifndef SYS_DARWIN | 14 #ifndef SYS_DARWIN |
17 #include <altivec.h> | 15 #include <altivec.h> |
18 #endif | 16 #endif |
19 | 17 |
536 out1[0x10* 9] = b1[0x13] + b1[0x1B]; | 534 out1[0x10* 9] = b1[0x13] + b1[0x1B]; |
537 out1[0x10*11] = b1[0x1B] + b1[0x17]; | 535 out1[0x10*11] = b1[0x1B] + b1[0x17]; |
538 out1[0x10*13] = b1[0x17] + b1[0x1F]; | 536 out1[0x10*13] = b1[0x17] + b1[0x1F]; |
539 out1[0x10*15] = b1[0x1F]; | 537 out1[0x10*15] = b1[0x1F]; |
540 } | 538 } |
541 | |
542 #endif /* HAVE_ALTIVEC */ | |
543 |