summaryrefslogtreecommitdiff
path: root/libavcodec/mpegaudiodec.c
Commit message (Collapse)AuthorAge
* factorize switch_buffer()Michael Niedermayer2007-02-03
| | | | Originally committed as revision 7813 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix decoding of takethat.mp3Michael Niedermayer2007-02-03
| | | | Originally committed as revision 7812 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix playback of mp3_bits_left.aviMichael Niedermayer2006-12-11
| | | | Originally committed as revision 7279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use the standard INT64_C() macro for 64-bit constantsMåns Rullgård2006-12-06
| | | | Originally committed as revision 7240 to svn://svn.ffmpeg.org/ffmpeg/trunk
* detect a few more errors (fixes libmp3-bug.avi again)Michael Niedermayer2006-11-15
| | | | | | make pickyness of the decoder user selectable through error_resilience param like for video decoders Originally committed as revision 7089 to svn://svn.ffmpeg.org/ffmpeg/trunk
* making decoding more error robustMichael Niedermayer2006-11-14
| | | | Originally committed as revision 7073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reset internal buffer during seekingMichael Niedermayer2006-11-14
| | | | Originally committed as revision 7070 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more checks and error messagesMichael Niedermayer2006-11-14
| | | | Originally committed as revision 7069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont set the sampling rate just because 1 mp3 packet header says so (fixes ↵Michael Niedermayer2006-10-30
| | | | | | playback speed on some old mencoder generated avis which where then dumped to mp3) Originally committed as revision 6837 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid random noise on damaged framesMichael Niedermayer2006-10-30
| | | | Originally committed as revision 6836 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change license headers to say 'FFmpeg' instead of 'this program/this library'Diego Biurrun2006-10-07
| | | | | | and fix GPL/LGPL version mismatches. Originally committed as revision 6577 to svn://svn.ffmpeg.org/ffmpeg/trunk
* message typo fixesDiego Biurrun2006-10-05
| | | | Originally committed as revision 6564 to svn://svn.ffmpeg.org/ffmpeg/trunk
* add some #ifdef CONFIG_ENCODERS/DECODERSMåns Rullgård2006-09-27
| | | | Originally committed as revision 6356 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some signedness warningsMåns Rullgård2006-09-27
| | | | Originally committed as revision 6355 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use mathopsLuca Barbato2006-09-22
| | | | Originally committed as revision 6323 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use correct rounding functionsMichael Niedermayer2006-09-19
| | | | | | | this should fix a floating point exception on some systems lets hope these arent missing anywhere, if so another solution must be found Originally committed as revision 6290 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove unused, uninitialized free format frame sizeBaptiste Coudurier2006-09-15
| | | | Originally committed as revision 6256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Proper armv5te instructions support detection.Siarhei Siamashka2006-09-13
| | | | | | patch by Siarhei Siamashka, siarhei dot siamashka gmail com Originally committed as revision 6246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* armv5 optimizationsSiarhei Siamashka2006-09-10
| | | | | | patch by Siarhei Siamashka siarhei.siamashka at gmail com Originally committed as revision 6228 to svn://svn.ffmpeg.org/ffmpeg/trunk
* print more correct error messgesMichael Niedermayer2006-09-08
| | | | Originally committed as revision 6194 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove redundant declarationsMåns Rullgård2006-09-02
| | | | Originally committed as revision 6153 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix buffer handlingMichael Niedermayer2006-08-28
| | | | Originally committed as revision 6116 to svn://svn.ffmpeg.org/ffmpeg/trunk
* overread AV_LOG_ERROR -> AV_LOG_DEBUGMichael Niedermayer2006-08-27
| | | | Originally committed as revision 6111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix low bitrate mp3Michael Niedermayer2006-08-27
| | | | Originally committed as revision 6107 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check the validity of the amount of the remaining bytes in the bitsteam ↵Michael Niedermayer2006-08-27
| | | | | | before memcpy Originally committed as revision 6105 to svn://svn.ffmpeg.org/ffmpeg/trunk
* unused varMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6104 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make mpa_decode_header() 10 times fasterMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6101 to svn://svn.ffmpeg.org/ffmpeg/trunk
* another silly typo which surprisingly neither valgrind nor cmp of the file ↵Michael Niedermayer2006-08-26
| | | | | | output cought Originally committed as revision 6100 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l found by valgrindMichael Niedermayer2006-08-26
| | | | Originally committed as revision 6099 to svn://svn.ffmpeg.org/ffmpeg/trunk
* remove duplicated parser, people who pass random gibblets of the bitstream ↵Michael Niedermayer2006-08-26
| | | | | | | | | into the decoder will have to pass it through a AVParser like for all other codecs too remove silly internal buffering architecture (removes 1 memcpy() of the bitstream) mp3on4 and mp3adu untested Originally committed as revision 6098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid branchMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6088 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move variable declarations so that their scope is smallerMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6087 to svn://svn.ffmpeg.org/ffmpeg/trunk
* move the +400 out of the innermost loopMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6086 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid reading exponent twiceMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* reduce size of vlc table, thats slightly faster hereMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6084 to svn://svn.ffmpeg.org/ffmpeg/trunk
* try to avoid l3_unscale() by using a tableMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6083 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace l3_unscale(1, exponents[pos]) by LUTMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6082 to svn://svn.ffmpeg.org/ffmpeg/trunk
* maybe fixing the segfault on ARMMichael Niedermayer2006-08-25
| | | | Originally committed as revision 6081 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l typoMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* avoid a few if(x==0) checks in the inner loopsMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6073 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimize reorder_block() though this function seems to be executed too ↵Michael Niedermayer2006-08-24
| | | | | | rarely for this to make much difference Originally committed as revision 6068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dont copy the whole GetBitContext aroundMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6062 to svn://svn.ffmpeg.org/ffmpeg/trunk
* faster handling of zero coeffs in the low freq decodeMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6061 to svn://svn.ffmpeg.org/ffmpeg/trunk
* optimizing high freq decodeMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6060 to svn://svn.ffmpeg.org/ffmpeg/trunk
* use memset() instead of slow c loopsMichael Niedermayer2006-08-24
| | | | Originally committed as revision 6059 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2006-08-23
| | | | Originally committed as revision 6058 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix arm asm compilation in mpegaudiodecAurelien Jacobs2006-08-23
| | | | Originally committed as revision 6057 to svn://svn.ffmpeg.org/ffmpeg/trunk
* MUL* for ARM code based on a patch by Siarhei SiamashkaMichael Niedermayer2006-08-22
| | | | | | untested Originally committed as revision 6050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace MULL with asm too, no significnat speedup but its probably better to ↵Michael Niedermayer2006-08-22
| | | | | | not take any chances, some versions of gcc will almost certainly mess it up too if they can Originally committed as revision 6049 to svn://svn.ffmpeg.org/ffmpeg/trunk