summaryrefslogtreecommitdiff
path: root/libavcodec/aac.c
Commit message (Collapse)AuthorAge
* AAC: Fix regression introduced in r20067 where ADTS files would always beRobert Swain2009-10-09
| | | | | | | signalled as having a channel configuration of 1 in output_configure(). Previously this didn't matter but it does now. Originally committed as revision 20193 to svn://svn.ffmpeg.org/ffmpeg/trunk
* dca and aac decoders use float_to_int16_interleave, so check forDavid Conrad2009-10-08
| | | | | | | the C version of that rather than float_to_int16. Fixes output on ARM/VFP Originally committed as revision 20192 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Refactor channel element configuration and mapping code into its own functionRobert Swain2009-09-28
| | | | | | to allow reuse Originally committed as revision 20069 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reindent after last commitRobert Swain2009-09-28
| | | | Originally committed as revision 20068 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Add channel layout support for channel configuration as defined in theRobert Swain2009-09-28
| | | | | | specification Originally committed as revision 20067 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: minor simplification in PNS decodingMåns Rullgård2009-09-23
| | | | Originally committed as revision 19999 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: 10l: fix PNS decodingMåns Rullgård2009-09-22
| | | | Originally committed as revision 19970 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Simplify some logic from r19956. (The escape codebook is unsigned.)Alex Converse2009-09-22
| | | | Originally committed as revision 19958 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: use new dsputil functionsMåns Rullgård2009-09-22
| | | | Originally committed as revision 19956 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger2009-09-06
| | | | | | .data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: K&R coding styleDiego Biurrun2009-08-02
| | | | Originally committed as revision 19562 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: reindent after last commitAlex Converse2009-07-10
| | | | Originally committed as revision 19400 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Ignore subsequent channel configurations after the first in an AAC file. TheAlex Converse2009-07-10
| | | | | | | current code doesn't handle them properly, and they are a dubious construction at best. Originally committed as revision 19399 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Rename ff_log_missing_feature() to av_log_missing_feature().Ronald S. Bultje2009-06-29
| | | | Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Re-indent after last commitAlex Converse2009-06-12
| | | | Originally committed as revision 19175 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Move TNS and swb_offset tables from aacdectab.h to aactab.c so that they can beAlex Converse2009-06-12
| | | | | | shared with the AAC encoder. Originally committed as revision 19174 to svn://svn.ffmpeg.org/ffmpeg/trunk
* In the event of a mismatch, do not follow the sample rate index in an AAC PCE.Alex Converse2009-05-26
| | | | | | This matches the behavior the reference decoder and fixes issue 1072. Originally committed as revision 18957 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support for getting (i)MDCT output multiplied by a constant scaling factor.Siarhei Siamashka2009-05-16
| | | | | | | | Scaling (i)MDCT output has no runtime overhead and can be used to improve performance of audio codecs. All the changes are only needed in 'ff_mdct_init' function and slow down initialization a bit. Originally committed as revision 18855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Allow parsing and decoding of ADTS AAC files with channel config = 0Alex Converse2009-05-13
| | | | Originally committed as revision 18815 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove redundant assignment. err is assigned in every switch case anyway. IssueRobert Swain2009-04-21
| | | | | | found by CSA. Originally committed as revision 18641 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unnecessary assignment, found by CSA.Robert Swain2009-04-19
| | | | Originally committed as revision 18617 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
* AAC: Ignore cc_domain for independent (time domain) coupling.Alex Converse2009-03-23
| | | | Originally committed as revision 18169 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: IEEE-754 type punning for 16-bit floating point rounding.Alex Converse2009-03-16
| | | | Originally committed as revision 18015 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-indent after last commit.Alex Converse2009-03-06
| | | | Originally committed as revision 17861 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If we get an error from ff_aac_parse_header() we should not trust the header ↵Alex Converse2009-03-06
| | | | | | info that it provides. Originally committed as revision 17860 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the channel allocation bug/assumption (issue 800).Alex Converse2009-03-06
| | | | | | Approved by Rob on IRC. Originally committed as revision 17856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: hoist dependent gain lookup out of the loopAlex Converse2009-03-05
| | | | Originally committed as revision 17835 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Make the CPE function more consistent with the functions for other ↵Alex Converse2009-03-01
| | | | | | channel elements. Originally committed as revision 17672 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-indent after last commit.Alex Converse2009-02-26
| | | | Originally committed as revision 17600 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Refactor AAC unsigned band type decoding for a modest speedup.Alex Converse2009-02-26
| | | | Originally committed as revision 17599 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use const to better allow the compiler to optimize AAC independent coupling.Alex Converse2009-02-26
| | | | Originally committed as revision 17598 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-indent after last commit.Alex Converse2009-02-13
| | | | Originally committed as revision 17211 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make set coup.gain[c][0] aand only coup.gain[c][0] is set for a ↵Alex Converse2009-02-13
| | | | | | | | independently switched CCE. Discussed/OKed at http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2009-February/062219.html Originally committed as revision 17210 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Cosmetic alterations after the last commitRobert Swain2009-02-12
| | | | Originally committed as revision 17182 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Give an error message when returning due to an unallocated channel elementAlex Converse2009-02-12
| | | | | | Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 17181 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for sample rate index 12, 7350 HzAlex Converse2009-02-12
| | | | | | Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 17180 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove bogus coupling_point assignment for non-CCE as this value is not checkedAlex Converse2009-02-12
| | | | | | | | in this case Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 17179 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Check sampling index validity for AAC decodingJai Menon2009-02-10
| | | | | | Patch by Jai Menon ( jmenon86 gmail com ) Originally committed as revision 17131 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
* Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs2009-01-13
| | | | | | They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support ADTS AAC files in the ffaac decoder (limited to streams containing oneRobert Swain2009-01-07
| | | | | | | | | raw_data_block() per ADTS frame) Patch by Alex Converse ( alex converse gmail com) based on a patch by Robert Swain ( robert swain gmail com ) Originally committed as revision 16485 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Revert r16375: It broke aac decoding.Carl Eugen Hoyos2008-12-28
| | | | Originally committed as revision 16376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Reduce number of warnings when compiling with icc by two.Carl Eugen Hoyos2008-12-28
| | | | Originally committed as revision 16375 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Reindent after last commitRobert Swain2008-12-21
| | | | Originally committed as revision 16251 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Fix AAC prediction when used in conjunction with the CPEAlex Converse2008-12-21
| | | | | | Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16250 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Don't write an illegal sampling_index in a PCE to the MPEG4AudioConfigAlex Converse2008-12-21
| | | | | | | | member Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16249 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: move scratch array to context to ensure 16-byte alignmentMåns Rullgård2008-12-10
| | | | Originally committed as revision 16043 to svn://svn.ffmpeg.org/ffmpeg/trunk
* AAC: Use a sign LUT rather than 1-2*get_bits1()Alex Converse2008-12-09
| | | | | | Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16041 to svn://svn.ffmpeg.org/ffmpeg/trunk