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
2016-06-06avcodec/wmalosslessdec: Use unsigned operations for overflowing casesMichael Niedermayer
Fixes undefined behavior in fate-lossless-wma24-2 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-11lossless audio dsp: unrollChristophe Gisquet
The loops are guaranteed to be at least multiples of 8, so this unrolling is safe but allows exploiting execution ports. For int32 version: 68 -> 58c. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2016-05-01avcodec/wmalosslessdec: fix type for coeffs and lms_updates in cdlms structPaul B Mahol
They should really be int16_t. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2016-04-13avcodec/wmalosslessdec: improve 24bit supportPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2014-06-05apedsp: move to llauddspChristophe Gisquet
APE is not the sole codec using scalarproduct_and_madd_int16. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>