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
2010-07-24aacenc: TLS: Save maximum values for each swb in a table.Alex Converse
This gives an almost 20% speedup. Originally committed as revision 24484 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-2410l: Remove some commented out code that slipped in.Alex Converse
Originally committed as revision 24483 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-24aacenc: TLS: Try to preserve some energy in each non-zero band.Alex Converse
Reduce scalefactors in non-zero bands that underflow by twice as much as those in bands that just fail to hit psy targets. Originally committed as revision 24482 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-24aacenc: Prevent premature termination of the two loop search.Alex Converse
Originally committed as revision 24476 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-24aacenc: Favor log2f() and sqrtf() over log2() and sqrt().Alex Converse
Originally committed as revision 24473 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-24aacenc: Factorize some scalefactor utilities.Alex Converse
Originally committed as revision 24472 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-20aacenc: Convert if () abort() to assert().Alex Converse
Originally committed as revision 24336 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-19Cosmetics: WhitespaceAlex Converse
Originally committed as revision 24333 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-1710l: Add a missing const.Alex Converse
Originally committed as revision 24274 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-17aacenc: Template quantize_and_encode_band_cost().Alex Converse
Originally committed as revision 24273 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-29aacenc: Fill in the estimated codebook for the final computed scalefactor in ↵Alex Converse
the TLS. Originally committed as revision 23869 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-29aacenc: Remove an unnecessary division from the TLS.Alex Converse
Originally committed as revision 23368 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-29Cosmetics: whitespaceAlex Converse
Originally committed as revision 23367 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-29aacenc: Remove unnecessary variables and scopes in the TLS.Alex Converse
Originally committed as revision 23366 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-26Fix declaration after statementAlex Converse
Originally committed as revision 23331 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25aacenc: Split find_max_val() from find_min_book() to eliminate duplicate ↵Alex Converse
searches. Originally committed as revision 23322 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25Remove useless costly inf checks from the trellis scalefactor search.Alex Converse
Originally committed as revision 23319 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25aacenc: Trellis over scalefactors using an estimated codebook rather than ↵Alex Converse
every codebook. The minimal codebook to encode the band without clipping is used (as is done in the TLS). Originally committed as revision 23318 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25aacenc: Only trellis over a column of 61 scalefactors (reduced from 256).Alex Converse
This still provides plenty of dynamic range, makes every move legal, and greatly reduces the search space. Originally committed as revision 23317 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-25aacenc: Factor out find_min_book so it can be used by multiple coefficient ↵Alex Converse
coders. Originally committed as revision 23316 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-14fmaxf -> FFMAX to fix pre-C99 systemsAlex Converse
Originally committed as revision 23138 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-14aacenc: Add a rate only trellis for codebook selection for the TLS.Alex Converse
Originally committed as revision 23136 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-14aacenc: Use exact values when quantizing, not fuzzy values.Alex Converse
This requires us to code small escapes; we can't avoid it. Originally committed as revision 23135 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-14aacenc: Use an estimated codebook for the TLS (two loop search).Alex Converse
Originally committed as revision 23134 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-0710l: store the result of clipping added in r23035Alex Converse
Originally committed as revision 23037 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07Make the faac inspired quantizer search make sense for a slightly narrower ↵Alex Converse
definition of "make sense." Originally committed as revision 23035 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-20Remove explicit filename from Doxygen @file commands.Diego Biurrun
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
2010-03-24aacenc: Merge quantize_band_cost() with quantize_and_encode_band().Alex Converse
If these two functions aren't matched results may be unexpected. Originally committed as revision 22655 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21aacenc: Use preprocessor constants for trellis states and stages.Alex Converse
Originally committed as revision 19948 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21aacenc: Split paths in the scalefactor selection trellis into a 2-D array.Alex Converse
Originally committed as revision 19947 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21aacenc: Replace cbrt() with cbrtf() when the result is destined for floatAlex Converse
storage. Originally committed as revision 19946 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21aacenc: Multiple distortion by lambda after it's summed and not each individualAlex Converse
term before. Originally committed as revision 19945 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21Cosmetics: Reindent after r19943.Alex Converse
Originally committed as revision 19944 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-09-21aacenc: Don't make unnecessary compares to the escape value in tight loops.Alex Converse
Originally committed as revision 19943 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-08-27Re-add search_for_ms to the coefficients encoders to silence warningsAlex Converse
Originally committed as revision 19733 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-22Be sure to increment our position in the coefficient array when skipping a zeroAlex Converse
band in the twoloop scalefactor search. Originally committed as revision 19480 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-21Remove an unused field from the BandCodingPath struct.Alex Converse
Originally committed as revision 19473 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-21Actually use all the codebooks we are iterating over in the two-loop ↵Alex Converse
scalefactor search. Originally committed as revision 19472 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-20Fix an integer overflow in the AAC encoder.Alex Converse
Originally committed as revision 19470 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17Replace pow(x, 0.75) with sqrtf(x * sqrtf(x)) for a 33% speedup.Alex Converse
Originally committed as revision 19459 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17Dead code removal in the AAC encoder.Alex Converse
Originally committed as revision 19457 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-17When calculating AAC quantized band cost, don't leave garbage in the bit countAlex Converse
for the 0 codebook. Originally committed as revision 19444 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Change fminf/fmaxf to FFMIN/FFMAX to fix the build on broken operating systems.Alex Converse
Originally committed as revision 19391 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Turn on AAC rate control.Alex Converse
Originally committed as revision 19379 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09cosmetics: Remove unnecessary {} around if/for blocks;Diego Biurrun
move statements after if/for to the next line. Originally committed as revision 19378 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09cosmetics: prettyprinting, K&R style, break overly long linesDiego Biurrun
Originally committed as revision 19377 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Cosmetics: Pretty print the AAC encoder.Alex Converse
Originally committed as revision 19376 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-07-09Merge the AAC encoder from SoC svn. It is still considered experimental.Alex Converse
Originally committed as revision 19375 to svn://svn.ffmpeg.org/ffmpeg/trunk