summaryrefslogtreecommitdiffstats
path: root/mp3lib
Commit message (Collapse)AuthorAgeFilesLines
* fix conversion float to int to use saturated ops,gpoirier2006-06-272-41/+52
| | | | | | | | | | Patch by Zuxy Meng < zuxy PP meng AH gmail PP com > Original thread: Date: Jun 21, 2006 2:50 PM Subject: [MPlayer-dev-eng] [PATCH] Saturation & PSWAPD bugfix in mp3lib/dct64_3dnow.c & mp3lib/dct64_k7.c git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18837 b3059339-0415-0410-9bf9-f77b7e298cf2
* CVS --> Subversion in copyright noticesdiego2006-06-2213-26/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18786 b3059339-0415-0410-9bf9-f77b7e298cf2
* Remove now obsolete .cvsignore files.diego2006-06-021-4/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18556 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make mp3lib say that it's using Altivec to decode instead of generic Cdiego2006-04-151-0/+7
| | | | | | | | when it uses the optimized IMDCT. patch by Alexander Strange, astrange __ at __ ithinksw __ dot __ com git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18102 b3059339-0415-0410-9bf9-f77b7e298cf2
* Patch by Stefan Huehner / stefan % huehner ! org \rathann2006-02-092-8/+8
| | | | | | | | | | | | | | | | | | | | | | patch replaces '()' for the correct '(void)' in function declarations/prototypes which have no parameters. The '()' syntax tell thats there is a variable list of arguments, so that the compiler cannot check this. The extra CFLAG '-Wstrict-declarations' shows those cases. Comments about a similar patch applied to ffmpeg: That in C++ these mean the same, but in ANSI C the semantics are different; function() is an (obsolete) K&R C style forward declaration, it basically means that the function can have any number and any types of parameters, effectively completely preventing the compiler from doing any sort of type checking. -- Erik Slagter Defining functions with unspecified arguments is allowed but bad. With arguments unspecified the compiler can't report an error/warning if the function is called with incorrect arguments. -- Måns Rullgård git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17567 b3059339-0415-0410-9bf9-f77b7e298cf2
* Make clean/distclean behave uniformly in all directories.diego2006-01-271-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17489 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reverse commit 31 Dec 2005 18:56:35 -0000 1.34gpoirier2006-01-031-2/+1
| | | | | | | | | | This was an incorrect fix made at the codec when it should be done at the demuxer level. static variables in codecs are ALWAYS wrong: the demuxer is supposed to have already removed all the junk Does anyone have an idea of a fix for the demuxer? (discussed on IRC) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17301 b3059339-0415-0410-9bf9-f77b7e298cf2
* "Currently mplayer looks for only one MP3 frame sync. The attachedgpoirier2005-12-311-1/+2
| | | | | | | | | | | | | | | | | | patch makes it to look for two consecutive valid MP3 frame headers, reducing the probability of false positives, which causes Bug 380. Funny that the fix is so simple. Seems that someone has forgotten to initialize MP3_resync correctly. Also this is the recommended way to sync MP3 frames. See http://www.dv.co.yu/mpgscript/mpeghdr.htm. " Original thread: Date: Dec 31, 2005 10:15 AM Subject: [MPlayer-dev-eng] [PATCH] Try twice when searching for MP3 frame header, fixes Bug 380 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17280 b3059339-0415-0410-9bf9-f77b7e298cf2
* Unify include paths, -I.. is in CFLAGS.diego2005-11-1511-19/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16990 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l broken asm crap needs an external namerfelker2005-10-252-1/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16859 b3059339-0415-0410-9bf9-f77b7e298cf2
* do not export useless symbols! fixed compile bug with decode support in lamerfelker2005-10-252-2/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16853 b3059339-0415-0410-9bf9-f77b7e298cf2
* Mark modified imported files as such to comply with (L)GPL §2a.diego2005-04-1513-0/+74
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15168 b3059339-0415-0410-9bf9-f77b7e298cf2
* Use proper parameter range in stereo testhenry2005-04-101-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15104 b3059339-0415-0410-9bf9-f77b7e298cf2
* Reduce excessive verbosity.diego2004-11-151-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13947 b3059339-0415-0410-9bf9-f77b7e298cf2
* compilation fix for gcc 3.4.2reimar2004-11-112-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13919 b3059339-0415-0410-9bf9-f77b7e298cf2
* Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.diego2004-10-281-1/+1
| | | | | | | Based on a patch by Sebastian Hegler <s_hegler at gmx dot de>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13788 b3059339-0415-0410-9bf9-f77b7e298cf2
* Index must be positive to prevent endless loop on bad datartognimp2004-09-141-6/+6
| | | | | | | Based on an idea by iive git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13337 b3059339-0415-0410-9bf9-f77b7e298cf2
* small gcc warning fixesrathann2004-08-281-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13189 b3059339-0415-0410-9bf9-f77b7e298cf2
* avoid outoptimization of static variables patch by ismail dönmez ↵faust32004-08-031-2/+2
| | | | | | <ismail.donmez at gmail.com> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12946 b3059339-0415-0410-9bf9-f77b7e298cf2
* ICC 8.0 compilation fixesatmos42004-08-021-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12929 b3059339-0415-0410-9bf9-f77b7e298cf2
* ranlib cleanup by Dan Christiansenalex2004-06-241-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12633 b3059339-0415-0410-9bf9-f77b7e298cf2
* attribute_used patch by (VMiklos <mamajom at axelero dot hu>)michael2004-04-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12304 b3059339-0415-0410-9bf9-f77b7e298cf2
* attribute_used for gcc3.4alex2004-04-265-6/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12293 b3059339-0415-0410-9bf9-f77b7e298cf2
* reorder funcs to avoid warnings/errors (gccs are nowadays are more pickier ↵alex2004-04-261-34/+31
| | | | | | about code than gcc2.95 with -ansi) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12292 b3059339-0415-0410-9bf9-f77b7e298cf2
* some more globalsalex2004-04-062-3/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12135 b3059339-0415-0410-9bf9-f77b7e298cf2
* removing more globalsalex2004-04-061-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12133 b3059339-0415-0410-9bf9-f77b7e298cf2
* fix symbol clashes when linking with libmp3lame including mp3 decoder, man, ↵alex2004-04-069-45/+38
| | | | | | 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
* reverting my last change as buggy gcc 3.x fails with it :(alex2003-10-251-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11267 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10l to me, noticed by Bjorn Sandellalex2003-10-231-9/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11247 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100l to Nickalex2003-10-231-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11245 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed obsoleted (or never ending) codealex2003-10-224-2255/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11242 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed the stdcall conventionalex2003-10-225-10/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11241 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove debug messagenexus2003-08-091-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10553 b3059339-0415-0410-9bf9-f77b7e298cf2
* layer-1 supportarpi2003-07-242-5/+162
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10469 b3059339-0415-0410-9bf9-f77b7e298cf2
* 100larpi2003-07-061-1/+3
| | | | | | | found by Koth git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10389 b3059339-0415-0410-9bf9-f77b7e298cf2
* getcpucaps supportalex2003-07-041-1/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10373 b3059339-0415-0410-9bf9-f77b7e298cf2
* disable L3: BigValues too large messagefaust32003-06-301-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10350 b3059339-0415-0410-9bf9-f77b7e298cf2
* merged with mpg123 0.59s-prearpi2003-06-283-787/+422
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10344 b3059339-0415-0410-9bf9-f77b7e298cf2
* moved 3dnow and 3dnowex dct36 optimisations into gcc inline assemblyalex2003-06-225-1012/+533
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10323 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixed bandInfo name clash with libmp3lame v3.93.1 (longLimit and shortLimit ↵alex2003-06-211-3/+3
| | | | | | are also only used in layer3.c so it's safe to make them static too - avoiding further clashes) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10322 b3059339-0415-0410-9bf9-f77b7e298cf2
* objfix has to be run on MINGW32, toofaust32003-03-311-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9772 b3059339-0415-0410-9bf9-f77b7e298cf2
* 10larpi2003-01-291-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9153 b3059339-0415-0410-9bf9-f77b7e298cf2
* In mp3lib/sr1.c, look at the line 226:arpi2003-01-281-7/+22
| | | | | | | | | | | if(fr->sampling_frequency>8) return FALSE; // valid: 0..8 which allows fr->sampling_frequency to go up to 8. Obviously, the code does not bother about what would happen if fr->sampling_frequency lies in the range [3,8]. patch from Nilmoni Deb, Nick?, Rich git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9131 b3059339-0415-0410-9bf9-f77b7e298cf2
* The two attached patches *should* allow for properarpi2003-01-272-2/+24
| | | | | | | | | | 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
* Propolice catches an overflow in dct64_k7.c:arpi2003-01-191-1/+1
| | | | | | | | mplayer: stack overflow in function dct64_MMX_3dnowex patch by Björn Sandell <biorn@dce.chalmers.se> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9040 b3059339-0415-0410-9bf9-f77b7e298cf2
* An altivec-optimized DCT64 for mp3libarpi2003-01-183-2/+541
| | | | | | | | | | (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
* fixing that f*cking linker 'bug' e.g. naming config with libmp3lamealex2002-12-246-12/+12
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8561 b3059339-0415-0410-9bf9-f77b7e298cf2
* cleanup & fix cpu detection & init stuffarpi2002-12-241-53/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8546 b3059339-0415-0410-9bf9-f77b7e298cf2
* don't redefine decwin as staticarpi2002-12-241-1/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8545 b3059339-0415-0410-9bf9-f77b7e298cf2
* decode_i586.c version uses %ebp for its own use, so:arpi2002-12-243-9/+15
| | | | | | | | | - we need to compile this with -fomit-frame-pointer or we cannot access the function parameters - we need to save & restore %ebp, or we'll destroy the caller's stack ptr git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8544 b3059339-0415-0410-9bf9-f77b7e298cf2
* removing very ugly esp games / fixes the propolice problem on OpenBSD (patch ↵michael2002-12-151-5/+1
| | | | | | | | | by Björn Sandell <biorn at dce dot chalmers dot se>) i hope this is ok for all compilers ... git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8454 b3059339-0415-0410-9bf9-f77b7e298cf2
* forgotten mangle patch by (Björn Sandell <biorn at dce dot chalmers dot se>)michael2002-11-192-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8237 b3059339-0415-0410-9bf9-f77b7e298cf2
* layer-1 stream parsing (NOT decoding) supportarpi2002-09-281-0/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7521 b3059339-0415-0410-9bf9-f77b7e298cf2
* pshufw is a mmx2 instruction, so don't use dct64_MMX_3dnowex on k6-3 whicharpi2002-09-211-1/+1
| | | | | | | has no mmxext (but has 3dnowex) - bug found by Diego, help by Michael git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7462 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor speedup by nick kurshev.atmos42002-09-071-64/+32
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7308 b3059339-0415-0410-9bf9-f77b7e298cf2
* - GCC 3.x (SPARC) is too clever for the double->int conversion trick used injkeil2002-09-061-10/+3
| | | | | | | | | | | | | | | | the WRITE_SAMPLE macro. Use a union instead of a cast to get at the binary representation of the double's mantissa. This should fix: http://mplayerhq.hu/pipermail/mplayer-users/2002-August/018948.html http://mplayerhq.hu/pipermail/mplayer-users/2002-August/019296.html http://mplayerhq.hu/pipermail/mplayer-users/2002-September/020348.html - garbage collect the unused CAN_COMPILE_X86 define git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7300 b3059339-0415-0410-9bf9-f77b7e298cf2
* make test1 && make test2 fixedarpi2002-09-011-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7235 b3059339-0415-0410-9bf9-f77b7e298cf2
* use dir/libname.a instead of -Ldir -lnamearpi2002-08-291-2/+2
| | | | | | | | | partially done by "Steven M. Schultz" <sms@2BSD.COM> Note: some entries (libmpdvdkit, libdha) left unchanged as they may be dynamic and not shipped with mplayer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7149 b3059339-0415-0410-9bf9-f77b7e298cf2
* Cygwin stdcall mismatch fix.atmos42002-05-244-20/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6178 b3059339-0415-0410-9bf9-f77b7e298cf2
* big cosmetics patch, cleanup of messages printed by mplayer and libs.arpi2002-05-201-11/+14
| | | | | | | | some printf->mp_msg conversion, and some debug messages moved from warn/info to v/dbg2 mplayer's output is now shorter, readable and consistent git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6139 b3059339-0415-0410-9bf9-f77b7e298cf2
* OpenBSD patch - by Björn Sandell <biorn@dce.chalmers.se>arpi2002-04-291-1/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5910 b3059339-0415-0410-9bf9-f77b7e298cf2
* don't re-detect cpuarpi2002-04-281-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5889 b3059339-0415-0410-9bf9-f77b7e298cf2
* Avoid stdcall on cygwin, it causes undefined ref, code needs testing as I ↵atmos42002-04-262-2/+12
| | | | | | have no athlon or k6-2. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5843 b3059339-0415-0410-9bf9-f77b7e298cf2
* mp_image.h and img_format.h moved to libmpcodecsarpi2002-04-131-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5608 b3059339-0415-0410-9bf9-f77b7e298cf2
* MANGLE() the 3dnow codearpi2002-03-232-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5292 b3059339-0415-0410-9bf9-f77b7e298cf2
* use .balign instead of .alignarpi2002-03-231-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5291 b3059339-0415-0410-9bf9-f77b7e298cf2
* more ugly hackarpi2002-03-231-1/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@5290 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix according to strange bugreportnick2002-02-091-8/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4609 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixing compilation on non-MMX but x86 systemsnick2002-01-232-13/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4323 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixing compilation on non-MMX but x86 systemsnick2002-01-232-4/+11
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4322 b3059339-0415-0410-9bf9-f77b7e298cf2
* remove TARGET lofaszpontscho2002-01-191-7/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4267 b3059339-0415-0410-9bf9-f77b7e298cf2
* Using cpudetect code instead of d_cpu.snick2002-01-194-330/+31
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4263 b3059339-0415-0410-9bf9-f77b7e298cf2
* mangling in mp3lib + stdcall undefined fix with cygwinatmos42002-01-194-14/+23
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4247 b3059339-0415-0410-9bf9-f77b7e298cf2
* rewrites symbols in d_cpu.s on cygwinatmos42002-01-192-0/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4245 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix "[MPlayer-dev-eng] mp3lib-mmx sig11 with mpeg1layer3 audio afterkmkaplan2002-01-151-0/+1
| | | | | | | recent changes": decode_MMX.c uses clobbers the frame pointer. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4180 b3059339-0415-0410-9bf9-f77b7e298cf2
* S->Cnick2002-01-153-993/+989
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4166 b3059339-0415-0410-9bf9-f77b7e298cf2
* runtime cpudetect support #2 - still not working (i can't identify the ↵alex2002-01-141-90/+137
| | | | | | problems ground, also it produces no sound (no noises), but the init seems to be ok (also i didn't changed anything)...very annoying :( snipp git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4151 b3059339-0415-0410-9bf9-f77b7e298cf2
* runtime cpudetect suppportalex2002-01-141-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4150 b3059339-0415-0410-9bf9-f77b7e298cf2
* S->Cnick2002-01-145-1723/+1708
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4149 b3059339-0415-0410-9bf9-f77b7e298cf2
* S->Cnick2002-01-143-322/+308
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4148 b3059339-0415-0410-9bf9-f77b7e298cf2
* S->Cnick2002-01-133-253/+245
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4143 b3059339-0415-0410-9bf9-f77b7e298cf2
* Bugnick2002-01-132-3/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4142 b3059339-0415-0410-9bf9-f77b7e298cf2
* S->Cnick2002-01-133-162/+155
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4141 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add sample bins.atmos42001-12-081-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3389 b3059339-0415-0410-9bf9-f77b7e298cf2
* fixedalex2001-11-301-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3220 b3059339-0415-0410-9bf9-f77b7e298cf2
* Disable SSE code and reenable FPU dct for SSE cpus (fpu code is 0.3% faster ↵atmos42001-11-293-16/+20
| | | | | | and I don't get data aligned in dct64_sse.s, so I can't finish optimizing it) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3204 b3059339-0415-0410-9bf9-f77b7e298cf2
* changed to use cpudetect.c (to use change te #if 1 -> #if 0 :)alex2001-11-231-0/+83
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3089 b3059339-0415-0410-9bf9-f77b7e298cf2
* Move ignores in subdirs to their respective .cvsignore files.atmos42001-11-171-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2964 b3059339-0415-0410-9bf9-f77b7e298cf2
* MIPS support by oliver.schoenbrunner@jku.atarpi2001-10-241-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2451 b3059339-0415-0410-9bf9-f77b7e298cf2
* Eeeh I need some sleep, accidently commited a wrong version of the files ↵atmos42001-09-231-6/+4
| | | | | | that had other changes, too. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1943 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fix for mp3 decoding on alpha/64bit platforms wupposed by Bob McElrath.atmos42001-09-231-5/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1942 b3059339-0415-0410-9bf9-f77b7e298cf2
* Applied cpu detection fix by Kjetil Torgrim Homme <kjetilho at linpro dot no>.atmos42001-09-151-2/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1895 b3059339-0415-0410-9bf9-f77b7e298cf2
* Fixed Makefile for test programs.atmos42001-08-081-2/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1462 b3059339-0415-0410-9bf9-f77b7e298cf2
* Furter compatibility with new ffmpeg stuff.nick2001-07-301-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1424 b3059339-0415-0410-9bf9-f77b7e298cf2
* First development version of dct64, mixed with 3dnow/k7 and fpu code.atmos42001-07-271-0/+2217
| | | | | | | Phases 1 to 3 seem to be ok already, report if you get strange sound with this version (klicks or distorted sound, that doesn't happen with mmx-only version), I've tested with approx. 20 mp3 files which all sounded ok, speed improvement with this version is still very minimal cause more cpu intensive phases 4 and 5 aren't working so I use fpu code for them. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1395 b3059339-0415-0410-9bf9-f77b7e298cf2
* Beginning sse optimization of dct code.atmos42001-07-272-3/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1394 b3059339-0415-0410-9bf9-f77b7e298cf2
* mp3 audio decoding didn't work on big-endian architecturesjkeil2001-07-141-2/+44
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1319 b3059339-0415-0410-9bf9-f77b7e298cf2
* Add some preliminary support for non-x86 architectures to mplayerjkeil2001-07-121-0/+20
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1310 b3059339-0415-0410-9bf9-f77b7e298cf2
* My 2.10.1 gnu assembler doesn't like C comment syntax in assembler files. Usejkeil2001-07-061-4/+4
| | | | | | | "assembler" comment characters ('/') instead. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1284 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor optimizationnick2001-07-062-18/+14
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1283 b3059339-0415-0410-9bf9-f77b7e298cf2
* Ignore generated config.mak files in CVSjkeil2001-07-061-0/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1282 b3059339-0415-0410-9bf9-f77b7e298cf2
* Slight otimizationnick2001-07-054-306/+316
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1278 b3059339-0415-0410-9bf9-f77b7e298cf2
* One flaw is fixednick2001-07-041-2/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1277 b3059339-0415-0410-9bf9-f77b7e298cf2
* Finished 3dnow optimization (in scalar mode) and minor improvementsnick2001-07-044-857/+833
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1272 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor cleanupsnick2001-07-041-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1271 b3059339-0415-0410-9bf9-f77b7e298cf2
* Partial loops unrollingnick2001-07-031-13/+115
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1260 b3059339-0415-0410-9bf9-f77b7e298cf2
* Portability and old binutils supportnick2001-07-033-9/+34
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1259 b3059339-0415-0410-9bf9-f77b7e298cf2
* #ifndef M_PI and M_SQRT2 added while fearing from redefining :)alex2001-07-021-4/+8
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1257 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor fixesnick2001-07-022-8/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1254 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added newest MMX-optimized decore which speedups decoding at least on 13% ↵nick2001-06-2919-2314/+3210
| | | | | | for any cpu. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1246 b3059339-0415-0410-9bf9-f77b7e298cf2
* OPTFLAGS vs. INCLUDES cleanuparpi2001-06-261-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1235 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better 3dnow! optimizationnickols_k2001-06-201-14/+17
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1174 b3059339-0415-0410-9bf9-f77b7e298cf2
* fr->sampling_frequency limitation (thanx to pl <p_l@tfz.net>)arpi_esp2001-06-191-0/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1167 b3059339-0415-0410-9bf9-f77b7e298cf2
* loops alignmentnickols_k2001-06-161-2/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1136 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor improvementsnickols_k2001-06-093-4/+5
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1068 b3059339-0415-0410-9bf9-f77b7e298cf2
* Last minute improvements before release. Added banchmarknickols_k2001-06-081-2/+7
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1055 b3059339-0415-0410-9bf9-f77b7e298cf2
* Last minute improvements before releasenickols_k2001-06-081-40/+140
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1054 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor improvementsnickols_k2001-06-073-4/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1046 b3059339-0415-0410-9bf9-f77b7e298cf2
* Minor optimizationnickols_k2001-06-062-14/+9
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1041 b3059339-0415-0410-9bf9-f77b7e298cf2
* dependency stuff fixedarpi_esp2001-06-041-3/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1011 b3059339-0415-0410-9bf9-f77b7e298cf2
* Replaced wrond direction floating -> integer conversion.atmosfear2001-05-251-3/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@873 b3059339-0415-0410-9bf9-f77b7e298cf2
* using gcc -MM instead of makedepend, make OBJS from SRCS where possiblearpi_esp2001-05-241-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@867 b3059339-0415-0410-9bf9-f77b7e298cf2
* This version is slightly better then previous, hard to decide.atmosfear2001-05-241-65/+62
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@865 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better working version, no silence, but distorted.atmosfear2001-05-241-30/+26
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@864 b3059339-0415-0410-9bf9-f77b7e298cf2
* Better insns schedulingnickols_k2001-05-241-70/+70
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@860 b3059339-0415-0410-9bf9-f77b7e298cf2
* Added missing mathlib for linking.atmosfear2001-05-173-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@827 b3059339-0415-0410-9bf9-f77b7e298cf2
* dump to filearpi_esp2001-05-161-1/+10
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@815 b3059339-0415-0410-9bf9-f77b7e298cf2
* test2 added for playback test, testreanmed to test1 to make Atmosfear happy...arpi_esp2001-05-132-2/+73
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@790 b3059339-0415-0410-9bf9-f77b7e298cf2
* test.c added for benchmarkingarpi_esp2001-05-132-0/+65
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@789 b3059339-0415-0410-9bf9-f77b7e298cf2
* mp3lib sse support - disabled by defaultarpi_esp2001-05-133-0/+216
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@788 b3059339-0415-0410-9bf9-f77b7e298cf2
* improvements.nickols_k2001-05-132-132/+122
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@782 b3059339-0415-0410-9bf9-f77b7e298cf2
* slight improvements. k7 vs 3dnow already win 12 prcntsnickols_k2001-05-121-6/+6
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@780 b3059339-0415-0410-9bf9-f77b7e298cf2
* improvementsnickols_k2001-05-111-48/+27
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@764 b3059339-0415-0410-9bf9-f77b7e298cf2
* ize ... sorry ;)pontscho2001-05-091-2/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@740 b3059339-0415-0410-9bf9-f77b7e298cf2
* cpuid bug fixed. remelem.pontscho2001-05-091-1/+19
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@739 b3059339-0415-0410-9bf9-f77b7e298cf2
* K7 3dnow-dsp supportnickols_k2001-05-095-0/+1487
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@737 b3059339-0415-0410-9bf9-f77b7e298cf2
* K7 3dnow-dsp printingnickols_k2001-05-091-0/+3
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@736 b3059339-0415-0410-9bf9-f77b7e298cf2
* K7 3dnow-dsp detectionnickols_k2001-05-091-11/+16
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@735 b3059339-0415-0410-9bf9-f77b7e298cf2
* applied 'fakemono' patch by Bryan Chan scorpio@acm.orgarpi_esp2001-05-083-0/+51
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@733 b3059339-0415-0410-9bf9-f77b7e298cf2
* segfault fixed - maybearpi_esp2001-05-071-4/+4
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@717 b3059339-0415-0410-9bf9-f77b7e298cf2
* gcc 3.0 patch by Felix von Leitnerarpi_esp2001-04-071-1/+2
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@303 b3059339-0415-0410-9bf9-f77b7e298cf2
* use _3dnow instead of a3dnow()szabii2001-03-101-1/+1
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@74 b3059339-0415-0410-9bf9-f77b7e298cf2
* removed auto-generated filesarpi_esp2001-03-021-6/+0
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30 b3059339-0415-0410-9bf9-f77b7e298cf2
* New dependency systemarpi_esp2001-03-021-7/+13
| | | | git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27 b3059339-0415-0410-9bf9-f77b7e298cf2
* Initial revisionarpi_esp2001-02-2422-0/+6463
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2 b3059339-0415-0410-9bf9-f77b7e298cf2