summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
Commit message (Collapse)AuthorAge
* rename BE/LE_8/16/32 to AV_RL/B_8/16/32Alex Beregszaszi2007-01-19
| | | | Originally committed as revision 7587 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix some potential security issues, patch by Matthias Hopf, mat at mshopf dot deMatthias Hopf2006-11-22
| | | | Originally committed as revision 7153 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
* Add const to (mostly) char* and make some functions static, which aren't usedStefan Huehner2006-06-18
| | | | | | | outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org Originally committed as revision 5497 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sanity checks, some might have been exploitable ...Michael Niedermayer2006-05-13
| | | | Originally committed as revision 5369 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix alac decoder on little endianBaptiste Coudurier2006-05-10
| | | | Originally committed as revision 5357 to svn://svn.ffmpeg.org/ffmpeg/trunk
* explain extradata and pass avctx to av_log'sAlex Beregszaszi2006-02-21
| | | | Originally committed as revision 5042 to svn://svn.ffmpeg.org/ffmpeg/trunk
* make some functions static (patch by Dieter < freebsd at sopwith.solgatos.com >)Dieter2006-01-28
| | | | Originally committed as revision 4905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Update licensing information: The FSF changed postal address.Diego Biurrun2006-01-12
| | | | Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
* COSMETICS: Remove all trailing whitespace.Diego Biurrun2005-12-17
| | | | Originally committed as revision 4749 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 100l - this has only worked on big endianAlex Beregszaszi2005-07-02
| | | | Originally committed as revision 4418 to svn://svn.ffmpeg.org/ffmpeg/trunk
* replace custom bit-reading functions with FFmpeg's internal function;Mike Melanson2005-03-10
| | | | | | roll alac_file data structure members into ALACContext Originally committed as revision 4027 to svn://svn.ffmpeg.org/ffmpeg/trunk
* get rid of nasty exit()'s so the decoder will only warn the user beforeMike Melanson2005-03-06
| | | | | | | it runs off the end of a buffer; eventually, this should be replaced with FFmpeg's internal bit reader which is hopefully more robust Originally committed as revision 4012 to svn://svn.ffmpeg.org/ffmpeg/trunk
* decoder works fine now, when fed properly-sized chunks by the demuxer;Mike Melanson2005-03-06
| | | | | | cleaned up some cruft for this commit Originally committed as revision 4010 to svn://svn.ffmpeg.org/ffmpeg/trunk
* do not use a variable before proper initializationMike Melanson2005-03-06
| | | | Originally committed as revision 4009 to svn://svn.ffmpeg.org/ffmpeg/trunk
* first pass at ALAC decoder from David Hammerton; while David's originalMike Melanson2005-03-06
decoder works great, this decoder is not completely and seamlessly integrated yet with FFmpeg Originally committed as revision 4008 to svn://svn.ffmpeg.org/ffmpeg/trunk