| Commit message (Expand) | Author | Age | Files | Lines |
* | Define AVMediaType enum, and use it instead of enum CodecType, which | Stefano Sabatini | 2010-03-30 | 1 | -1/+1 |
* | Allow hard-coding of the 32kB cubic-root table for AAC. | Reimar Döffinger | 2010-03-14 | 1 | -9/+2 |
* | aac: Don't bias output during the IMDCT if SBR will be used. | Alex Converse | 2010-03-13 | 1 | -13/+14 |
* | Add an HE-AAC v1 decoder. | Alex Converse | 2010-03-08 | 1 | -31/+52 |
* | 10l: AAC: Set multiplier to 0. | Alex Converse | 2010-03-07 | 1 | -1/+1 |
* | AAC: Set codec parameters in the first frame rather than in .init() | Alex Converse | 2010-03-07 | 1 | -4/+9 |
* | AAC: Add a new line after the TNS error message. | Alex Converse | 2010-03-07 | 1 | -1/+1 |
* | Move FFT parts from dsputil.h to fft.h | Måns Rullgård | 2010-03-06 | 1 | -0/+1 |
* | AAC: Return the number of bytes consumed in decoding a frame. | Alex Converse | 2010-03-04 | 1 | -1/+3 |
* | AAC: Mark predictor functions av_always_inline. | Alex Converse | 2010-03-04 | 1 | -2/+2 |
* | aac: Keep decode_band_types() from eating all padding at the end of a buffer. | Alex Converse | 2010-02-24 | 1 | -0/+4 |
* | Add some AAC buffer overread checks. | Alex Converse | 2010-02-18 | 1 | -4/+26 |
* | AAC: Mark che_configure() as av_cold. | Alex Converse | 2010-02-15 | 1 | -1/+1 |
* | AAC: Mark functions that are only called when the output configuration is not... | Alex Converse | 2010-02-15 | 1 | -2/+2 |
* | Output the first AAC frame. This is needed for SBR conformance. | Alex Converse | 2010-02-10 | 1 | -6/+0 |
* | AAC: optimise bitstream reading in decode_spectrum_and_dequant() | Måns Rullgård | 2010-01-15 | 1 | -28/+65 |
* | AAC: ARM/NEON asm for VMUL2/4 functions | Måns Rullgård | 2010-01-15 | 1 | -0/+12 |
* | AAC: Reduce depth of vlc_spectral tables to 2 | Måns Rullgård | 2010-01-13 | 1 | -16/+16 |
* | AAC: Unswitch loop over window groups in decode_spectrum_and_dequant() | Måns Rullgård | 2010-01-13 | 1 | -15/+39 |
* | AAC: simplify some calculations in decode_spectrum_and_dequant() | Måns Rullgård | 2010-01-13 | 1 | -27/+31 |
* | AAC: Compress codebook tables and optimise sign bit handling | Måns Rullgård | 2010-01-13 | 1 | -54/+187 |
* | AAC: use table for cbrtf(n)*n | Måns Rullgård | 2010-01-11 | 1 | -1/+6 |
* | AAC: escape_sequence is 21 bits max | Måns Rullgård | 2010-01-11 | 1 | -3/+3 |
* | Add support for hard-coded MDCT-related ff_sine_windows tables. | Reimar Döffinger | 2010-01-09 | 1 | -2/+2 |
* | AAC: add a const to decode_spectrum_and_dequant() args | Måns Rullgård | 2010-01-08 | 1 | -1/+1 |
* | Undo r20874: It broke AAC decoding. | Carl Eugen Hoyos | 2009-12-16 | 1 | -3/+2 |
* | Use enum and constant to avoid three icc warnings. | Carl Eugen Hoyos | 2009-12-15 | 1 | -2/+3 |
* | aac: Set sample rate in avctx from ADTS header (if not already set by some | Andreas Öman | 2009-12-08 | 1 | -0/+2 |
* | AAC: Add a global header but output not locked output configuration status. | Alex Converse | 2009-12-02 | 1 | -1/+1 |
* | Set the SBR mode to implicit on ADTS frames occurring before the output is lo... | Alex Converse | 2009-12-02 | 1 | -0/+2 |
* | 10l: Fix inverted if-condition from r20448. Fixes issue 1562. | Alex Converse | 2009-11-21 | 1 | -1/+1 |
* | AAC: Rename sect_len to sect_end. It marks the last sfb of the section, not the | Alex Converse | 2009-11-11 | 1 | -7/+7 |
* | Don't lock the channel output configuration based on the first value seen for | Alex Converse | 2009-11-03 | 1 | -7/+12 |
* | AAC: Fix regression introduced in r20067 where ADTS files would always be | Robert Swain | 2009-10-09 | 1 | -1/+1 |
* | dca and aac decoders use float_to_int16_interleave, so check for | David Conrad | 2009-10-08 | 1 | -1/+1 |
* | Refactor channel element configuration and mapping code into its own function | Robert Swain | 2009-09-28 | 1 | -23/+39 |
* | Reindent after last commit | Robert Swain | 2009-09-28 | 1 | -21/+21 |
* | AAC: Add channel layout support for channel configuration as defined in the | Robert Swain | 2009-09-28 | 1 | -5/+23 |
* | AAC: minor simplification in PNS decoding | Måns Rullgård | 2009-09-23 | 1 | -4/+4 |
* | AAC: 10l: fix PNS decoding | Måns Rullgård | 2009-09-22 | 1 | -1/+1 |
* | AAC: Simplify some logic from r19956. (The escape codebook is unsigned.) | Alex Converse | 2009-09-22 | 1 | -1/+1 |
* | AAC: use new dsputil functions | Måns Rullgård | 2009-09-22 | 1 | -32/+27 |
* | Make sample_fmts and channel_layouts compound literals const to reduce size of | Reimar Döffinger | 2009-09-06 | 1 | -1/+1 |
* | cosmetics: K&R coding style | Diego Biurrun | 2009-08-02 | 1 | -314/+391 |
* | Cosmetics: reindent after last commit | Alex Converse | 2009-07-10 | 1 | -1/+1 |
* | Ignore subsequent channel configurations after the first in an AAC file. The | Alex Converse | 2009-07-10 | 1 | -7/+14 |
* | Rename ff_log_missing_feature() to av_log_missing_feature(). | Ronald S. Bultje | 2009-06-29 | 1 | -5/+5 |
* | Cosmetics: Re-indent after last commit | Alex Converse | 2009-06-12 | 1 | -4/+4 |
* | Move TNS and swb_offset tables from aacdectab.h to aactab.c so that they can be | Alex Converse | 2009-06-12 | 1 | -4/+4 |
* | In the event of a mismatch, do not follow the sample rate index in an AAC PCE. | Alex Converse | 2009-05-26 | 1 | -6/+3 |