aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/aaccoder.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove explicit filename from Doxygen @file commands.Diego Biurrun2010-04-201-1/+1
| | | | | | | | Passing an explicit filename to this command is only necessary if the documentation in the @file block refers to a file different from the one the block resides in. Originally committed as revision 22921 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Merge quantize_band_cost() with quantize_and_encode_band().Alex Converse2010-03-241-114/+30
| | | | | | If these two functions aren't matched results may be unexpected. Originally committed as revision 22655 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Use preprocessor constants for trellis states and stages.Alex Converse2009-09-211-9/+12
| | | | Originally committed as revision 19948 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Split paths in the scalefactor selection trellis into a 2-D array.Alex Converse2009-09-211-46/+49
| | | | Originally committed as revision 19947 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Replace cbrt() with cbrtf() when the result is destined for floatAlex Converse2009-09-211-2/+2
| | | | | | storage. Originally committed as revision 19946 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Multiple distortion by lambda after it's summed and not each individualAlex Converse2009-09-211-12/+12
| | | | | | term before. Originally committed as revision 19945 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Reindent after r19943.Alex Converse2009-09-211-10/+10
| | | | Originally committed as revision 19944 to svn://svn.ffmpeg.org/ffmpeg/trunk
* aacenc: Don't make unnecessary compares to the escape value in tight loops.Alex Converse2009-09-211-4/+4
| | | | Originally committed as revision 19943 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Re-add search_for_ms to the coefficients encoders to silence warningsAlex Converse2009-08-271-4/+4
| | | | Originally committed as revision 19733 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Be sure to increment our position in the coefficient array when skipping a zeroAlex Converse2009-07-221-1/+3
| | | | | | band in the twoloop scalefactor search. Originally committed as revision 19480 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove an unused field from the BandCodingPath struct.Alex Converse2009-07-201-1/+0
| | | | Originally committed as revision 19473 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Actually use all the codebooks we are iterating over in the two-loop ↵Alex Converse2009-07-201-1/+1
| | | | | | scalefactor search. Originally committed as revision 19472 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix an integer overflow in the AAC encoder.Alex Converse2009-07-201-2/+2
| | | | Originally committed as revision 19470 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace pow(x, 0.75) with sqrtf(x * sqrtf(x)) for a 33% speedup.Alex Converse2009-07-171-5/+8
| | | | Originally committed as revision 19459 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Dead code removal in the AAC encoder.Alex Converse2009-07-171-5/+0
| | | | Originally committed as revision 19457 to svn://svn.ffmpeg.org/ffmpeg/trunk
* When calculating AAC quantized band cost, don't leave garbage in the bit countAlex Converse2009-07-161-0/+2
| | | | | | for the 0 codebook. Originally committed as revision 19444 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change fminf/fmaxf to FFMIN/FFMAX to fix the build on broken operating systems.Alex Converse2009-07-091-9/+9
| | | | Originally committed as revision 19391 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Turn on AAC rate control.Alex Converse2009-07-081-14/+5
| | | | Originally committed as revision 19379 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Remove unnecessary {} around if/for blocks;Diego Biurrun2009-07-081-22/+17
| | | | | | move statements after if/for to the next line. Originally committed as revision 19378 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: prettyprinting, K&R style, break overly long linesDiego Biurrun2009-07-081-67/+79
| | | | Originally committed as revision 19377 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Pretty print the AAC encoder.Alex Converse2009-07-081-169/+169
| | | | Originally committed as revision 19376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Merge the AAC encoder from SoC svn. It is still considered experimental.Alex Converse2009-07-081-0/+1037
Originally committed as revision 19375 to svn://svn.ffmpeg.org/ffmpeg/trunk