aboutsummaryrefslogtreecommitdiffhomepage
path: root/mp3lib
Commit message (Expand)AuthorAge
* Lots and lots of #ifdef ARCH_... -> #if ARCH_...Gravatar reimar2009-01-16
* Add missing 'void' keyword to parameterless function declarations.Gravatar diego2009-01-05
* Consistently include config.h before mangle.h, fixes possible compilationGravatar reimar2008-12-15
* Add missing 'void' to parameterless function declaration.Gravatar diego2008-12-11
* Get rid of pointless 'extern' keywords.Gravatar diego2008-12-03
* Replace all occurrences of '__volatile__' and '__volatile' by plain 'volatile'.Gravatar diego2008-10-16
* Change all occurrences of asm and __asm to __asm__, same as was done for FFmpeg.Gravatar diego2008-10-16
* Start unifying names of internal preprocessor directives.Gravatar diego2008-07-30
* Remove AltiVec vector declaration compiler compatibility macros.Gravatar diego2008-07-26
* Check for HAVE_ALTIVEC_VECTOR_BRACES instead of __APPLE_CC__.Gravatar diego2008-05-30
* Merge mp3lib/Makefile into top-level Makefile.Gravatar diego2008-04-27
* Revert accidentally committed changes.Gravatar diego2008-04-25
* Only add loader to parts if WIN32DLL is enabled.Gravatar diego2008-04-25
* Only compile decode_i586.c on x86_32.Gravatar diego2008-04-25
* Remove useless comments with compilation commands.Gravatar diego2008-04-25
* Fix test program linking.Gravatar diego2008-04-25
* Add return statement, fixes the warning:Gravatar diego2008-04-25
* Remove redundant declaration, fixes the warning:Gravatar diego2008-04-25
* Add return statement, fixes the warning:Gravatar diego2008-04-25
* Remove unused variable.Gravatar diego2008-04-25
* Add missing #include, fixes the warning:Gravatar diego2008-04-25
* Take name of getch file to link against from config.mak.Gravatar diego2008-04-25
* Expand conditional addition of elements to variables with a form that permitsGravatar diego2008-04-24
* Use directory name as library name template.Gravatar diego2008-04-22
* #include config.h before all other headers.Gravatar diego2008-03-14
* Refactor AltiVec macros as done for FFmpeg.Gravatar diego2008-02-18
* Always use inline instead of _inline, the former is supported by allGravatar reimar2008-01-27
* Remove unnecessary <signal.h> includesGravatar uau2008-01-09
* cosmetics: Remove ugly and inconsistent uppercasing from filenames.Gravatar diego2007-12-12
* cosmetics: Move public function declarations together.Gravatar diego2007-12-12
* Add missing declaration for dct64_altivec, fixes the warning:Gravatar diego2007-12-12
* Add missing #include <stdio.h>, fixes the warning:Gravatar diego2007-12-11
* There is a check for altivec.h in configure so use the preprocessor directiveGravatar diego2007-12-11
* Replace SYS_DARWIN conditional directive around gcc macros by __APPLE_CC__.Gravatar diego2007-12-11
* Identifiers starting with __ are reserved for the system.Gravatar diego2007-12-11
* Remove pointless HAVE_ALTIVEC around the whole file, it is only compiled whenGravatar diego2007-12-11
* Fix warning:Gravatar diego2007-08-25
* Get rid of duplicate processor feature variables.Gravatar diego2007-06-27
* Follow ffmpeg TARGET_ARCH_* -> ARCH_* change.Gravatar reimar2007-06-16
* Enable SIMD optmizations for mp3lib on AMD64Gravatar zuxy2007-06-08
* Change some static temporary vars to automatic ones because mingw32 binutilsGravatar zuxy2007-06-06
* Align output pointer so that we can use movaps instead of movups in dct64_sse;Gravatar zuxy2007-06-06
* Replace implicit use of fast_memcpy via macro by explicit use to allowGravatar reimar2007-06-05
* Change '%ld' to '%d' to remove warnings introduced by r23452Gravatar zuxy2007-06-04
* Correct dct64 functions' declarationsGravatar zuxy2007-06-04
* Remove non-existing make_decode_tables_MMX()Gravatar zuxy2007-06-02
* Use int and uint32_t instead of long and unsigned long, when appropriate.Gravatar zuxy2007-06-02
* Record what was produced by make_decode_table_MMX() and used that data toGravatar zuxy2007-05-25
* Remove hardcoded registersGravatar zuxy2007-05-23
* Replace hardcoded 32-bit leal with equivalent add/sub so pointer arithmetic w...Gravatar zuxy2007-05-22