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
2012-12-06resample: remove disabled debug codeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-11-16swr/resample: move templating parameters to template itself.Clément Bœsch
It has various benefits such as allowing some refactoring, clarifying the code in the inclusion part, and making the template understandable in standalone. This commit is based on the templating method used by Justin Ruggles for libavresample.
2012-11-15swr: move if() block into the only branch where it can be true.Michael Niedermayer
This should make the code a tiny tiny bit faster. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-11-15swr: reorder/redesign operations to avoid integer overflow.Michael Niedermayer
This fixes a out of array read. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-28swr: MMX2 & SSSE3 int16 resample coreMichael Niedermayer
about 4 times faster Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-19swr: introduce filter_alloc in preparation of SIMD resample optimisationsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-19swr/resample: optimize C code for the most common caseMichael Niedermayer
15% speedup Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-06-06resample_template: use av_assertMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-04-10swr: support float & int32 in the resamplerMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>