summaryrefslogtreecommitdiff
path: root/libavcodec/alacenc.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>
* Separate window function from autocorrelation.Justin Ruggles2011-01-21
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.Justin Ruggles2011-01-21
| | | | 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
* Use "const" qualifier for pointers that point to input data ofReimar Döffinger2010-07-24
| | | | | | | audio encoders. This is purely for clarity/documentation purposes. Originally committed as revision 24481 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.Justin Ruggles2010-07-11
| | | | | | | Add AVLPCType enum. Deprecate AVCodecContext.use_lpc. Originally committed as revision 24199 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless header inclusion.Jai Menon2010-04-12
| | | | Originally committed as revision 22851 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc : Report supported input sample formats.Jai Menon2010-04-10
| | | | Originally committed as revision 22829 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
* alacenc : use private compression_level value consistently.Jai Menon2009-10-17
| | | | Originally committed as revision 20261 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc : Move some code around for clarity.Jai Menon2009-10-16
| | | | Originally committed as revision 20256 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: reindent and line wrap after last commitJustin Ruggles2009-10-05
| | | | Originally committed as revision 20174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: add a fixed LPC coefficient mode as compression level 1. oldJustin Ruggles2009-10-05
| | | | | | compression level 1 is now compression level 2 and is still the default. Originally committed as revision 20173 to svn://svn.ffmpeg.org/ffmpeg/trunk
* put_bits can only reliably write up to 31 bit bits, above it relies onReimar Döffinger2009-10-01
| | | | | | | | undefined shift behaviour. Document this, fix the assert and add a put_bits32 to handle writing 32 bits and use that where necessary. Originally committed as revision 20124 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix max_coded_frame_size computation to account for byte alignment.Jai Menon2009-09-15
| | | | | | Fixes issue 1386. Originally committed as revision 19859 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
* alacenc : cosmetics : remove misleading commentJai Menon2009-04-13
| | | | Originally committed as revision 18493 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split bitstream.h, put the bitstream writer stuff in the new fileStefano Sabatini2009-04-12
| | | | | | put_bits.h. Originally committed as revision 18461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use sign_extend().Benoit Fouet2009-03-03
| | | | | | On behalf of Jai. Originally committed as revision 17759 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an overflow in the predictor.Jai Menon2008-12-05
| | | | | | | fixes issue 636 Patch by Jai. Originally committed as revision 16007 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
* alacenc : perform decorrelation only for stereo samplesJai Menon2008-08-22
| | | | Originally committed as revision 14904 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: compare against ALAC_MAX_LPC_ORDER instead of MAX_LPC_ORDERJai Menon2008-08-19
| | | | Originally committed as revision 14847 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: last few hunks approved by michaelJai Menon2008-08-19
| | | | Originally committed as revision 14845 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: Use user-specified min and max prediction order.Ramiro Polla2008-08-19
| | | | Originally committed as revision 14844 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import more OKed parts of ALAC encoder from GSoC repo.Ramiro Polla2008-08-19
| | | | Originally committed as revision 14843 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import more ok'd parts of ALAC encoder from GSoC repo.Ramiro Polla2008-08-17
| | | | Originally committed as revision 14820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* alacenc: NULL_IF_CONFIG_SMALL long_name.Ramiro Polla2008-08-17
| | | | Originally committed as revision 14801 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Import ok'd parts of ALAC encoder from GSoC repo.Ramiro Polla2008-08-17
Originally committed as revision 14798 to svn://svn.ffmpeg.org/ffmpeg/trunk