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-12-20lavr: add option for dithering during sample format conversion to s16Justin Ruggles
2012-12-12lavr: fix segfault due to overlooked change needed in 14758e3Justin Ruggles
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2012-12-11lavr: temporarily store custom matrix in AVAudioResampleContextJustin Ruggles
This allows AudioMix to be treated the same way as other conversion contexts and removes the requirement to allocate it at the same time as the AVAudioResampleContext. The current matrix get/set functions are split between the public interface and AudioMix private functions.
2012-11-28lavr: do not pass consumed samples as a parameter to ff_audio_resample()Justin Ruggles
Since the resampler handles buffering of unconsumed samples internally, the caller does not need this information.
2012-11-28lavr: do not pass sample count as a parameter to ff_audio_convert()Justin Ruggles
It will always be the number of samples in the input buffer, so just use that directly instead of passing it as a separate parameter.
2012-11-18lavr: fix the decision for writing directly to the output bufferJustin Ruggles
If there are any samples remaining in the output fifo from previous conversion calls, we have to output those samples first instead of doing direct output of the current samples.
2012-10-05lavr: change the type of the data buffers to uint8_t**.Anton Khirnov
This is more consistent with what the rest of Libav does. This breaks API.
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-04lavr: fix handling of custom mix matricesJustin Ruggles
Adds some validation for changing parameters after setting the matrix and fixes a bug in the conversion path setup.
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-08lavr: resampling: add support for s32p, fltp, and dblp internal sample formatsJustin Ruggles
Based partially on implementation by Michael Niedermayer <michaelni@gmx.at> in libswresample in FFmpeg. See commits: 7f1ae79d38c4edba9dbd31d7bf797e525298ac55 24ab1abfb6d55bf330022df4b10d7aec80b3f116
2012-07-08lavr: Use AV_SAMPLE_FMT_NONE to auto-select the internal sample formatJustin Ruggles
Also make this the default value.
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-04-25Add libavresampleJustin Ruggles
This is a new library for audio sample format, channel layout, and sample rate conversion.