Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-28Refactor channel element configuration and mapping code into its own functionRobert Swain
to allow reuse Originally committed as revision 20069 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28Reindent after last commitRobert Swain
Originally committed as revision 20068 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-28AAC: Add channel layout support for channel configuration as defined in theRobert Swain
specification Originally committed as revision 20067 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-23AAC: minor simplification in PNS decodingMåns Rullgård
Originally committed as revision 19999 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-22AAC: 10l: fix PNS decodingMåns Rullgård
Originally committed as revision 19970 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-22AAC: Simplify some logic from r19956. (The escape codebook is unsigned.)Alex Converse
Originally committed as revision 19958 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-22AAC: use new dsputil functionsMåns Rullgård
Originally committed as revision 19956 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-06Make sample_fmts and channel_layouts compound literals const to reduce size ofReimar Döffinger
.data section. Originally committed as revision 19787 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-02cosmetics: K&R coding styleDiego Biurrun
Originally committed as revision 19562 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-11Cosmetics: reindent after last commitAlex Converse
Originally committed as revision 19400 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-11Ignore subsequent channel configurations after the first in an AAC file. TheAlex Converse
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
2009-06-29Rename ff_log_missing_feature() to av_log_missing_feature().Ronald S. Bultje
Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-13Cosmetics: Re-indent after last commitAlex Converse
Originally committed as revision 19175 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-06-13Move TNS and swb_offset tables from aacdectab.h to aactab.c so that they can beAlex Converse
shared with the AAC encoder. Originally committed as revision 19174 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-27In the event of a mismatch, do not follow the sample rate index in an AAC PCE.Alex Converse
This matches the behavior the reference decoder and fixes issue 1072. Originally committed as revision 18957 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-05-16Support for getting (i)MDCT output multiplied by a constant scaling factor.Siarhei Siamashka
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
2009-05-13Allow parsing and decoding of ADTS AAC files with channel config = 0Alex Converse
Originally committed as revision 18815 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-21Remove redundant assignment. err is assigned in every switch case anyway. IssueRobert Swain
found by CSA. Originally committed as revision 18641 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-19Remove unnecessary assignment, found by CSA.Robert Swain
Originally committed as revision 18617 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-13Rename bitstream.h to get_bits.h.Stefano Sabatini
Originally committed as revision 18494 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-04-07Implement avcodec_decode_video2(), _audio3() and _subtitle2() which takes anThilo Borgmann
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
2009-03-23AAC: Ignore cc_domain for independent (time domain) coupling.Alex Converse
Originally committed as revision 18169 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-16AAC: IEEE-754 type punning for 16-bit floating point rounding.Alex Converse
Originally committed as revision 18015 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-07Re-indent after last commit.Alex Converse
Originally committed as revision 17861 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-07If we get an error from ff_aac_parse_header() we should not trust the header ↵Alex Converse
info that it provides. Originally committed as revision 17860 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-06Fix the channel allocation bug/assumption (issue 800).Alex Converse
Approved by Rob on IRC. Originally committed as revision 17856 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-06AAC: hoist dependent gain lookup out of the loopAlex Converse
Originally committed as revision 17835 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-03-01AAC: Make the CPE function more consistent with the functions for other ↵Alex Converse
channel elements. Originally committed as revision 17672 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26Re-indent after last commit.Alex Converse
Originally committed as revision 17600 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26Refactor AAC unsigned band type decoding for a modest speedup.Alex Converse
Originally committed as revision 17599 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-26Use const to better allow the compiler to optimize AAC independent coupling.Alex Converse
Originally committed as revision 17598 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-13Re-indent after last commit.Alex Converse
Originally committed as revision 17211 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-13Make set coup.gain[c][0] aand only coup.gain[c][0] is set for a ↵Alex Converse
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
2009-02-12AAC: Cosmetic alterations after the last commitRobert Swain
Originally committed as revision 17182 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-12Give an error message when returning due to an unallocated channel elementAlex Converse
Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 17181 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-12Add support for sample rate index 12, 7350 HzAlex Converse
Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 17180 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-12Remove bogus coupling_point assignment for non-CCE as this value is not checkedAlex Converse
in this case Patch by Alex Converse ( alex converse gmail com ) Originally committed as revision 17179 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-10Check sampling index validity for AAC decodingJai Menon
Patch by Jai Menon ( jmenon86 gmail com ) Originally committed as revision 17131 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-02-01Use full internal pathname in doxygen @file directives.Diego Biurrun
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
2009-01-14Change semantic of CONFIG_*, HAVE_* and ARCH_*.Aurelien Jacobs
They are now always defined to either 0 or 1. Originally committed as revision 16590 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-01-08Support ADTS AAC files in the ffaac decoder (limited to streams containing oneRobert Swain
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
2008-12-28Revert r16375: It broke aac decoding.Carl Eugen Hoyos
Originally committed as revision 16376 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-28Reduce number of warnings when compiling with icc by two.Carl Eugen Hoyos
Originally committed as revision 16375 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-21AAC: Reindent after last commitRobert Swain
Originally committed as revision 16251 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-21AAC: Fix AAC prediction when used in conjunction with the CPEAlex Converse
Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16250 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-21AAC: Don't write an illegal sampling_index in a PCE to the MPEG4AudioConfigAlex Converse
member Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16249 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-10AAC: move scratch array to context to ensure 16-byte alignmentMåns Rullgård
Originally committed as revision 16043 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-09AAC: Use a sign LUT rather than 1-2*get_bits1()Alex Converse
Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16041 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-09AAC: Unroll code within decode_spectrum_and_dequant(). Gives 12% net speed gain.Alex Converse
Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16040 to svn://svn.ffmpeg.org/ffmpeg/trunk
2008-12-09AAC: Remove unnecessary fabsf()Alex Converse
Patch by Alex Converse (alex converse gmail com) Originally committed as revision 16039 to svn://svn.ffmpeg.org/ffmpeg/trunk