Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-24lavr: x86: optimized 6-channel fltp to s16 conversionJustin Ruggles
2012-08-24lavr: x86: optimized 2-channel fltp to s16 conversionJustin Ruggles
2012-08-24lavr: x86: optimized 6-channel s16p to flt conversionJustin Ruggles
2012-08-24lavr: x86: optimized 2-channel s16p to flt conversionJustin Ruggles
2012-08-24lavr: x86: optimized 6-channel s16p to s16 conversionJustin Ruggles
2012-08-24lavr: x86: optimized 2-channel s16p to s16 conversionJustin Ruggles
2012-08-07x86: add colons after labelsMans Rullgard
nasm prints a warning if the colon is missing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-27lavr: x86: improve non-SSE4 version of S16_TO_S32_SX macroJustin Ruggles
Removes a false dependency on existing contents of the 2nd dst register, giving better performance for OOE.
2012-07-27lavr: add x86-optimized mixing functionsJustin Ruggles
Adds optimized functions for mixing 3 through 8 input channels to 1 and 2 output channels in fltp or s16p format with flt coeffs.
2012-07-27x86inc: automatically insert vzeroupper for YMM functions.Ronald S. Bultje
2012-07-25lavr: x86: add missing vzeroupper in ff_mix_1_to_2_fltp_flt()Justin Ruggles
2012-06-26lavr: x86: fix ff_conv_fltp_to_flt_6ch function prototypesJustin Ruggles
Changed to match the number of parameters in conv_func_interleave(), which is how they are called. The change isn't strictly necessary because the 4th parameter is not used, but the code is clearer if they match.
2012-06-25lavr: x86: merge some branchesJustin Ruggles
2012-06-19lavr: Add x86-optimized function for flt to s32 conversionJustin Ruggles
2012-06-19lavr: Add x86-optimized function for flt to s16 conversionJustin Ruggles
2012-06-19lavr: Add x86-optimized functions for s32 to flt conversionJustin Ruggles
2012-06-19lavr: Add x86-optimized functions for s32 to s16 conversionJustin Ruggles
2012-06-19lavr: Add x86-optimized functions for s16 to flt conversionJustin Ruggles
2012-06-19lavr: Add x86-optimized function for s16 to s32 conversionJustin Ruggles
2012-06-18lavr: add x86-optimized functions for mixing 1-to-2 s16p with flt coeffsJustin Ruggles
2012-06-18lavr: add x86-optimized functions for mixing 1-to-2 fltp with flt coeffsJustin Ruggles
2012-05-29lavr: add x86-optimized function for mixing 2 to 1 s16p with q8 coeffsJustin Ruggles
2012-05-29lavr: add x86-optimized functions for mixing 2 to 1 s16p with float coeffsJustin Ruggles
2012-05-10lavr: replace the SSE version of ff_conv_fltp_to_flt_6ch() with SSE4 and AVXJustin Ruggles
The current SSE version is slower than the MMX version on Athlon64 and Sandy Bridge, but the SSE4 and AVX versions are faster on Sandy Bridge.
2012-05-07build: cosmetics: Add missing end-of-line backslashes to item lists.Diego Biurrun
2012-05-01Fix compilation with YASM/NASM without AVX support.Reimar Döffinger
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-04-25Add libavresampleJustin Ruggles
This is a new library for audio sample format, channel layout, and sample rate conversion.