summaryrefslogtreecommitdiff
path: root/libavcodec/aacenc_quantization_misc.h
Commit message (Collapse)AuthorAge
* aacenc: use generational cache instead of resetting.Reimar Döffinger2016-03-08
| | | | | | | Approximately 11% faster transcoding from mp3 with default settings. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* AAC encoder: memoize quantize_band_costClaudio Freire2015-10-12
The bulk of calls to quantize_band_cost are replaced by a call to a version that memoizes, greatly improving performance, since during coefficient search there is a great deal of repeat work. Memoization cannot always be applied, so do this in a different function, and leave the original as-is.