summaryrefslogtreecommitdiffstats
path: root/mp3lib/dct64_altivec.c
Commit message (Collapse)AuthorAgeFilesLines
* Refactor AltiVec macros as done for FFmpeg.diego2008-02-181-14/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26028 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing #include <stdio.h>, fixes the warning:diego2007-12-111-0/+1
| | | | | | | | | dct64_altivec.c: In function 'dct64_altivec': dct64_altivec.c:74: warning: implicit declaration of function 'printf' dct64_altivec.c:74: warning: incompatible implicit declaration of built-in function 'printf' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25369 b3059339-0415-0410-9bf9-f77b7e298cf2
* There is a check for altivec.h in configure so use the preprocessor directivediego2007-12-111-1/+1
| | | | | | | set by configure instead of an OS-specific directive when #including altivec.h. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25356 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replace SYS_DARWIN conditional directive around gcc macros by __APPLE_CC__.diego2007-12-111-3/+3
| | | | | | | The macro definition depends on compiler capabilities, not OS features. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25355 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove pointless HAVE_ALTIVEC around the whole file, it is only compiled whendiego2007-12-111-5/+0
| | | | | | | HAVE_ALTIVEC is set anyway. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25352 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add missing license, as chosen by its authorgpoirier2006-06-291-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18852 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix symbol clashes when linking with libmp3lame including mp3 decoder, man, ↵alex2004-04-061-9/+9
| | | | | | mp3lib is so much bloated git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12132 b3059339-0415-0410-9bf9-f77b7e298cf2
* copyright update by the authordiego2004-02-191-5/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11981 b3059339-0415-0410-9bf9-f77b7e298cf2
* The two attached patches *should* allow for properarpi2003-01-271-2/+20
| | | | | | | | | | compilation of the AltiVec stuff on both Darwin and non-Darwin system. They've only been tested for compilation on Debian using Debian's gcc-3.2. Romain Dolbeau <dolbeau@irisa.fr> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9123 b3059339-0415-0410-9bf9-f77b7e298cf2
* An altivec-optimized DCT64 for mp3libarpi2003-01-181-0/+525
(partially, it seems roughly three times as fast as the C code according to quick-n-dirty gprof tests) This one is bit-perfect. patch by Romain Dolbeau <dolbeau@irisa.fr> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9003 b3059339-0415-0410-9bf9-f77b7e298cf2