summaryrefslogtreecommitdiff
path: root/libavcodec/alsdec.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix spelling in comment(s)Reinhard Tartler2010-08-071-1/+1
| | | | Originally committed as revision 24737 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add av_ prefix to bswap macrosMåns Rullgård2010-07-101-2/+2
| | | | Originally committed as revision 24170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Grammar fixesMåns Rullgård2010-07-021-4/+4
| | | | Originally committed as revision 23961 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix grammar errors in documentationMåns Rullgård2010-06-301-22/+22
| | | | Originally committed as revision 23904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add CRC check to the ALS decoder.Thilo Borgmann2010-06-291-6/+89
| | | | Originally committed as revision 23889 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alsdec: convert VLAs to fixed sizeMåns Rullgård2010-06-261-2/+2
| | | | | | | The maximum value of sub_blocks is 8, a safe size to always allocate on stack. Originally committed as revision 23797 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-301-1/+1
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix last frame block size correction.Thilo Borgmann2010-03-061-1/+1
| | | | Originally committed as revision 22238 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do sequential bit reading outside of []-operators.Thilo Borgmann2010-02-191-1/+5
| | | | Originally committed as revision 21892 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix sizeof()-statement to use the actual pointer type.Thilo Borgmann2010-02-171-1/+1
| | | | Originally committed as revision 21872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix wrong buffer allocation for MCC in ALS.Thilo Borgmann2010-02-171-2/+2
| | | | Originally committed as revision 21871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Limit the Rice parameter used for progressive decoding in ALS.Thilo Borgmann2010-02-161-2/+8
| | | | Originally committed as revision 21849 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent a line.Thilo Borgmann2010-02-131-1/+1
| | | | Originally committed as revision 21810 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support arithmetic decoding in ALS.Thilo Borgmann2010-02-131-5/+109
| | | | Originally committed as revision 21799 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary fields in ALSSpecificConfig.Thilo Borgmann2010-02-011-12/+8
| | | | Originally committed as revision 21583 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commit.Thilo Borgmann2010-01-121-2/+2
| | | | Originally committed as revision 21171 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace variable length array with an allocated bufferThilo Borgmann2010-01-121-2/+7
| | | | | | in the context to increase compatibility. Originally committed as revision 21170 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change local variable type from unsigned int to int in order toThilo Borgmann2010-01-081-1/+1
| | | | | | fix a fate test error for gcc 4.1.x introduced in revision 21069. Originally committed as revision 21103 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add multi-channel correlation support for ALS.Thilo Borgmann2010-01-071-21/+269
| | | | Originally committed as revision 21074 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Optimize short-term prediction by reducing index arithmetic.Thilo Borgmann2010-01-071-6/+19
| | | | Originally committed as revision 21069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace array operator [] with direct access via pointer.Thilo Borgmann2010-01-051-2/+2
| | | | | | Solves issue 1657. Originally committed as revision 21029 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Read and decode block data in separate functions to prepare support forThilo Borgmann2009-12-131-101/+248
| | | | | | multi-channel correlation mode. Originally committed as revision 20825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use get_bits_left() instead of size_in_bits - get_bits_count().Ronald S. Bultje2009-11-161-1/+1
| | | | Originally committed as revision 20543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge data tables from als_data.h with the decoder source to reduceThilo Borgmann2009-11-141-1/+73
| | | | | | code complexity. Originally committed as revision 20536 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long-term prediction to the ALS decoder.Thilo Borgmann2009-11-141-2/+45
| | | | Originally committed as revision 20534 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Re-indentAlex Converse2009-11-121-1/+1
| | | | Originally committed as revision 20522 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix a __warn_memset_zero_len gcc-4.4 warning.Alex Converse2009-11-121-0/+1
| | | | Originally committed as revision 20521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add MPEG-4 Audio Lossless Coding (ALS) decoder.Thilo Borgmann2009-11-111-0/+997
Patch by Thilo Borgmann, thilo D borgmann A googlemail Originally committed as revision 20517 to svn://svn.ffmpeg.org/ffmpeg/trunk