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-07-04Clarify Doxygen comment for FF_API_* #defines.Diego Biurrun
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-06-18Add Dolby/DPLII downmix support to libavresampleJohn Stebbins
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
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-29lavr: add C functions for mixing 2 to 1 channels with s16p formatJustin 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-09lavr: do not try to copy to uninitialized output audio data.Anton Khirnov
This would happen at least when lavr is used as a fifo with no conversion.
2012-05-09lavr: make avresample_read() with NULL output discard samples.Anton Khirnov
2012-05-07build: cosmetics: Add missing end-of-line backslashes to item lists.Diego Biurrun
2012-05-01lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff typeJustin Ruggles
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.