]> git.sesse.net Git - ffmpeg/history - libavcodec/alac.c
configure: Document --enable-libfontconfig
[ffmpeg] / libavcodec / alac.c
2016-05-04 Vittorio Giovaracosmetics: Fix spelling mistakes
2015-07-27 Vittorio Giovaralavc: AV-prefix all codec capabilities
2015-05-08 Andreas Cadhalpunalac: Reject rice_limit 0 if compression is used
2015-02-14 Diego Biurrunavcodec: Don't anonymously typedef structs
2014-03-22 Diego Biurrunavcodec: more correct printf specifiers
2013-10-03 Diego Biurruncosmetics: Group .name and .long_name together in codec...
2013-09-29 Martin Storsjöalac: Do bounds checking of lpc_order read from the...
2013-09-03 Martin Storsjöalac: Check that the channels fit at the given offset
2013-09-03 Martin Storsjöalac: Limit max_samples_per_frame
2013-03-13 Diego Biurrunavcodec: av_log_ask_for_sample() ---> avpriv_request_sa...
2013-03-08 Anton Khirnovlavc decoders: work with refcounted frames.
2013-02-12 Justin Rugglesalac: decode directly to the user-provided AVFrame
2012-12-22 Justin Rugglesalacdec: do not be too strict about the extradata size
2012-12-05 Justin Rugglesalacenc: add support for multi-channel encoding
2012-12-04 Anton Khirnovlavc: add a wrapper for AVCodecContext.get_buffer().
2012-11-11 Justin RugglesInclude libavutil/channel_layout.h instead of libavutil...
2012-10-22 Justin Rugglesalacdec: set bits_per_raw_sample
2012-08-07 Anton KhirnovReplace all CODEC_ID_* with AV_CODEC_ID_*
2012-07-27 Justin Rugglesalac: check for truncated packets
2012-07-27 Justin Rugglesalac: reverse lpc coeff order, simplify filter
2012-07-20 Justin Rugglesalac: fix channel pointer assignment for 24 and 32-bit
2012-07-19 Justin Rugglesalac: cosmetics: general pretty-printing and comment...
2012-07-19 Justin Rugglesalac: calculate buffer size outside the loop in allocat...
2012-07-19 Justin Rugglesalac: change some data types to plain int
2012-07-19 Justin Rugglesalac: cosmetics: rename some variables and function...
2012-07-19 Andrew D'Addesioalac: multi-channel decoding support
2012-07-19 Justin Rugglesalac: split element parsing into a separate function
2012-07-19 Justin Rugglesalac: support a read sample size of up to 32
2012-07-19 Justin Rugglesalac: output in planar sample format
2012-07-19 Justin Rugglesalac: add 32-bit decoding support
2012-07-19 Andrew D'Addesioalac: simplify channel interleaving
2012-07-19 Justin Rugglesalac: use AVPacket fields directly in alac_decode_frame()
2012-07-19 Justin Rugglesalac: fix check for valid max_samples_per_frame
2012-07-19 Justin Rugglesalac: use get_sbits() to read LPC coefficients instead...
2012-07-19 Justin Rugglesalac: move the current samples per frame to the ALACContext
2012-07-19 Justin Rugglesalac: avoid using a double-negative when checking if...
2012-07-19 Justin Rugglesalac: factor out output_size check in predictor_decompr...
2012-07-19 Justin Rugglesalac: factor out loading of next decoded sample in...
2012-07-19 Justin Rugglesalac: use index into buffer_out instead of incrementing...
2012-07-19 Justin Rugglesalac: simplify lpc coefficient adaptation
2012-07-19 Justin Rugglesalac: reduce the number of local variables needed in...
2012-07-19 Justin Rugglesalac: simplify 1st order prediction and reading of...
2012-07-19 Justin Rugglesalac: cosmetics: reindent after last commit
2012-07-19 Justin Rugglesalac: remove unneeded conditionals in predictor_decompr...
2012-07-19 Justin Rugglesalac: use sizeof() instead of hardcoded data sizes
2012-07-19 Justin Rugglesalac: make block_size signed
2012-07-19 Justin Rugglesalac: remove a duplicate local variable
2012-07-19 Justin Rugglesalac: conditionally set sign_modifier to 1
2012-07-19 Justin Rugglesalac: eliminate 2 unneeded local variables in bastardiz...
2012-07-19 Justin Rugglesalac: adjust conditions for updating entropy decoder...
2012-07-19 Justin Rugglesalac: cosmetics: reindent after last commit
2012-07-19 Justin Rugglesalac: limit the rice param before passing to decode_sca...
2012-07-19 Justin Rugglesalac: reduce the number of parameters to bastardized_ri...
2012-07-19 Justin Rugglesalac: cosmetics: rename some ALACContext parameters
2012-07-19 Justin Rugglesalac: clean up and update comments leftover from revers...
2012-04-06 Martin Storsjöcosmetics: Align codec declarations
2012-03-25 Ronald S. Bultjealac: convert extradata reading to bytestream2.
2012-01-03 Justin Rugglesalacdec: implement the 2-pass prediction type.
2012-01-03 Justin Rugglesalacdec: fill in missing or guessed info about the...
2011-12-02 Justin RugglesAdd avcodec_decode_audio4().
2011-10-26 Justin Rugglesalacdec: remove unneeded NULL or zero-size packet checks.
2011-10-26 Justin Rugglesalacdec: simplify buffer allocation by using FF_ALLOC_O...
2011-10-26 Justin Rugglesalacdec: ask for a sample for unsupported sample depths.
2011-10-26 Justin Rugglesalacdec: cosmetics: use 'ch' instead of 'chan' to itera...
2011-10-26 Justin Rugglesalacdec: move some declarations to the top of the function
2011-10-26 Justin Rugglesalacdec: always use get_sbits_long() for uncompressed...
2011-10-26 Justin Rugglesalacdec: remove unneeded local variable
2011-10-26 Justin Rugglesalacdec: remove the numchannels parameter from several...
2011-10-26 Justin Rugglesalacdec: rename 2 functions.
2011-10-26 Justin Rugglesalacdec: move appending of extra_bits to a separate...
2011-10-26 Justin Rugglesalacdec: split stereo decorrelation into a separate...
2011-10-26 Justin Rugglesalacdec: cosmetics: rename 'wasted_bits' to 'extra_bits'.
2011-10-26 Justin Rugglesalacdec: remove unneeded numsamples checks
2011-10-26 Justin Rugglesalacdec: check for buffer allocation failure.
2011-10-26 Justin Rugglesalacdec: allocate per-channel buffers based on channel...
2011-10-26 Justin Rugglesalacdec: read/validate number of channels from the...
2011-10-26 Justin Rugglesalacdec: remove unneeded validation of setinfo_sample_size.
2011-10-26 Justin Rugglesalacdec: set sample_fmt in alac_decode_init()
2011-10-26 Justin Rugglesalacdec: set bytespersample using av_get_bytes_per_sample()
2011-07-29 Anton Khirnovlavc: use designated initialisers for all codecs.
2011-07-15 Diego Biurrunalac: Remove unused dummy code.
2011-07-15 Diego Biurrundoxygen: use Doxygen markup for authors and web links...
2011-03-19 Mans RullgardReplace FFmpeg with Libav in licence headers
2011-01-26 Diego Elio PettenòAdd ff_ prefix to data symbols of encoders, decoders...
2010-11-12 Stefano SabatiniReplace deprecated symbols SAMPLE_FMT_* with AV_SAMPLE_...
2010-10-26 Jason Garrett-GlaserClean up ALACdec
2010-06-24 Måns Rullgårdalac: change VLAs to fixed size
2010-04-20 Diego BiurrunRemove explicit filename from Doxygen @file commands.
2010-03-30 Stefano SabatiniDefine AVMediaType enum, and use it instead of enum...
2010-02-06 Jai MenonAvoid using an intermediate variable.
2010-02-06 Jai MenonRemove redundant use of numchannels since it is 1 for...
2010-02-06 Jai Menonalac.c : Use av_freep instead of av_free.
2010-02-04 Jai MenonAdd ALAC 24 bps decoding support.
2009-04-13 Stefano SabatiniRename bitstream.h to get_bits.h.
2009-04-07 Thilo BorgmannImplement avcodec_decode_video2(), _audio3() and _subti...
2009-03-03 Justin Rugglesalacdec: Simplify reading of uncompressed samples by...
2009-03-03 Måns RullgårdALAC: use sign_extend() from mathops.h
2009-02-01 Diego BiurrunUse full internal pathname in doxygen @file directives.
2008-09-08 Baptiste Coudurieralac : fix case where bits_per_sample is not set.
2008-09-08 Luca AbeniBump Major version, this commit is almost just renaming...
next