summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
Commit message (Collapse)AuthorAge
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.Diego Elio Pettenò2011-01-26
| | | | | | | None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Replace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_FMT_*, and enumStefano Sabatini2010-11-12
| | | | | | SampleFormat with AVSampleFormat. Originally committed as revision 25730 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clean up ALACdecJason Garrett-Glaser2010-10-26
| | | | | | | Do decode init in the init function instead of at the first frame. Fix some possible crash cases. Originally committed as revision 25572 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alac: change VLAs to fixed sizeMåns Rullgård2010-06-24
| | | | Originally committed as revision 23751 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-20
| | | | | | | | 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-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid using an intermediate variable.Jai Menon2010-02-06
| | | | Originally committed as revision 21656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant use of numchannels since it is 1 for mono.Jai Menon2010-02-06
| | | | Originally committed as revision 21655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alac.c : Use av_freep instead of av_free.Jai Menon2010-02-06
| | | | Originally committed as revision 21654 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add ALAC 24 bps decoding support.Jai Menon2010-02-04
| | | | Originally committed as revision 21637 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename bitstream.h to get_bits.h.Stefano Sabatini2009-04-13
| | | | Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann2009-04-07
| | | | | | | | | | | AVPacket argument rather than a const uint8_t *buf + int buf_size. This allows passing of packet-specific flags from demuxer to decoder, such as the keyframe flag, which appears necessary to playback corePNG P-frames. Patch by Thilo Borgmann thilo.borgmann googlemail com, see also the thread "Google Summer of Code participation" on the mailinglist. Originally committed as revision 18351 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacdec: Simplify reading of uncompressed samples by usingJustin Ruggles2009-03-03
| | | | | | get_sbits_long(). Originally committed as revision 17744 to svn://svn.ffmpeg.org/ffmpeg/trunk
* ALAC: use sign_extend() from mathops.hMåns Rullgård2009-03-03
| | | | Originally committed as revision 17739 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alac : fix case where bits_per_sample is not set.Baptiste Coudurier2008-09-08
| | | | | | Patch by Baptiste Originally committed as revision 15275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Bump Major version, this commit is almost just renaming bits_per_sample toLuca Abeni2008-09-08
| | | | | | | | | | | bits_per_coded_sample but that cannot be done seperately. Patch by Luca Abeni Also reset the minor version and fix the forgotton change to libfaad. Note: The API/ABI should not be considered stable yet, there still may be a change done here or there if some developer has some cleanup ideas and patches! Originally committed as revision 15262 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alac : check readsamplesize to ensure get_bits() doesn'tMatthieu Castet2008-08-22
| | | | | | fail. Patch by Matthieu Castet <castet.matthieu AT free fr> Originally committed as revision 14905 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Modify all codecs to report their supported input and output sample format(s).Peter Ross2008-07-31
| | | | Originally committed as revision 14482 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix verbatim mode decoding. patch by Jai Menon (realityman gmx net).Jai Menon2008-06-15
| | | | Originally committed as revision 13775 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make AVCodec long_names definition conditional depending on CONFIG_SMALL.Stefano Sabatini2008-06-12
| | | | Originally committed as revision 13759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: indent after last commit. patch by matthieu castet <castet ↵Matthieu Castet2008-05-11
| | | | | | matthieu free fr>. Originally committed as revision 13121 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify decoding of uncompressed samples. patch by matthieu castet <castet ↵Matthieu Castet2008-05-11
| | | | | | matthieu free fr>. Originally committed as revision 13120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* fix reading of samples-per-frameJustin Ruggles2008-05-11
| | | | Originally committed as revision 13111 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Output buffer overflow.Michael Niedermayer2008-05-03
| | | | Originally committed as revision 13052 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Heap buffer overflow.Michael Niedermayer2008-05-03
| | | | Originally committed as revision 13051 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix memset(0) based buffer overflow.Michael Niedermayer2008-05-03
| | | | Originally committed as revision 13050 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add long names to many AVCodec declarations.Stefano Sabatini2008-04-27
| | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste it Originally committed as revision 13005 to svn://svn.ffmpeg.org/ffmpeg/trunk
* check alac EOF markerMatthieu Castet2008-04-18
| | | | | | Patch by Matthieu Castet castet matthieu free fr Originally committed as revision 12891 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove another unneeded var from contextVitor Sessak2008-04-17
| | | | Originally committed as revision 12884 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 10l: my last commit broke compilation and introduced warningsVitor Sessak2008-04-17
| | | | Originally committed as revision 12883 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded variables from contextVitor Sessak2008-04-17
| | | | Originally committed as revision 12882 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove wrapper around av_log2()Vitor Sessak2008-04-17
| | | | Originally committed as revision 12881 to svn://svn.ffmpeg.org/ffmpeg/trunk
* indentMichael Niedermayer2008-04-17
| | | | Originally committed as revision 12875 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize more code.Michael Niedermayer2008-04-17
| | | | Originally committed as revision 12874 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Factorize decode_postfix() out.Michael Niedermayer2008-04-17
| | | | Originally committed as revision 12873 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change k limiting code, i think the code was buggy.Michael Niedermayer2008-04-17
| | | | | | | If you have ALAC files TEST them! Mine produce the same md5 but the new code is not identical if limiting does happen. Originally committed as revision 12872 to svn://svn.ffmpeg.org/ffmpeg/trunk
* more senseless codeMichael Niedermayer2008-04-17
| | | | | | One wonders how such stuff gets past the reviews ... Originally committed as revision 12871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* senseless codeMichael Niedermayer2008-04-17
| | | | Originally committed as revision 12870 to svn://svn.ffmpeg.org/ffmpeg/trunk
* useless variableMichael Niedermayer2008-04-17
| | | | Originally committed as revision 12869 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplifyMichael Niedermayer2008-04-17
| | | | Originally committed as revision 12868 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Apply 'cold' attribute to init/uninit functions in libavcodecZuxy Meng2008-03-21
| | | | Originally committed as revision 12525 to svn://svn.ffmpeg.org/ffmpeg/trunk
* constMichael Niedermayer2008-02-01
| | | | Originally committed as revision 11711 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spellingVitor Sessak2007-12-01
| | | | Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove reimplementation of get_unary.Vitor Sessak2007-09-01
| | | | | | Based on a patch by Alex Beregszaszi. Originally committed as revision 10279 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetical: Empty line removalVitor Sessak2007-08-31
| | | | Originally committed as revision 10275 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Comment about unsupported sample sizeVitor Sessak2007-08-31
| | | | Originally committed as revision 10273 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename functionVitor Sessak2007-08-30
| | | | Originally committed as revision 10265 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace two #define's by inline functionsVitor Sessak2007-08-30
| | | | Originally committed as revision 10264 to svn://svn.ffmpeg.org/ffmpeg/trunk