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
2018-01-09avresample: remove deprecated attribute from the AVAudioResampleContext structJames Almer
Having all the public functions marked as deprecated is enough. This gets rid of a warning spam when compiling any file including libavresample/avresample.h even when avresample is not enabled, like it's the case with fftools/cmdutils.c Signed-off-by: James Almer <jamrial@gmail.com>
2018-01-04lavr: deprecate the entire libraryRostislav Pehlivanov
Deprecate the entire library. Merged years ago to provide compatibility with Libav, it remained unmaintained by the FFmpeg project and duplicated functionality provided by libswresample. In order to improve consistency and reduce attack surface, as well as to ease burden on maintainers, it has been deprecated. Users of this library are asked to migrate to libswresample, which, as well as providing more functionality, is faster and has higher accuracy. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
2017-04-03Merge commit 'a1d9de304fe63614e3aa8117fef17491fa80093d'Clément Bœsch
* commit 'a1d9de304fe63614e3aa8117fef17491fa80093d': Fix some mismatches between function parameter and doxygen parameter names. Merged-by: Clément Bœsch <u@pkh.me>
2016-11-21Fix some mismatches between function parameter and doxygen parameter names.Diego Biurrun
2016-08-03doxygen: Standardize root-level modulesTimothy Gu
2016-01-02Merge commit 'cc4c24208159200b7aff5b5c313903c7f23fa345'Hendrik Leppkes
* commit 'cc4c24208159200b7aff5b5c313903c7f23fa345': avresample: Mark avresample_buffer() as pointer to const Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-12-14avresample: Mark avresample_buffer() as pointer to constKip Warner
That buffer is read only and marking it accordingly let the user passing a constant buffer to it without having a const-correctness warning. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2015-11-10Merge commit 'e2854e731f843906d9a9a5b882bed872341999fd'Hendrik Leppkes
* commit 'e2854e731f843906d9a9a5b882bed872341999fd': avresample: Document avresample_open() a little better Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-11-05avresample: Document avresample_open() a little betterLuca Barbato
Bug-Id: 911
2014-08-10Merge commit 'fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45'Michael Niedermayer
* commit 'fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45': avresample: Introduce AVFrame-based API Conflicts: libavresample/utils.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-10avresample: Introduce AVFrame-based APILuca Barbato
2014-05-29Merge commit 'b2d45654220503224aa94e78cdff19ec624e9342'Michael Niedermayer
* commit 'b2d45654220503224aa94e78cdff19ec624e9342': avresample: Add avresample_get_out_samples Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-29avresample: Add avresample_get_out_samplesLuca Barbato
Utility function to get the upper bound on the number of samples the resampler would output.
2014-02-23Merge commit '7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731'Michael Niedermayer
* commit '7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731': lavr: add a function for checking whether AVAudioResampleContext is open Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-22lavr: add a function for checking whether AVAudioResampleContext is openAnton Khirnov
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2013-01-08lavr: add a public function for setting a custom channel mapJustin Ruggles
This allows reordering, duplication, and silencing of input channels.
2013-01-04lavr: fix missing " in header documentationPeter Meerwald
Signed-off-by: Peter Meerwald <p.meerwald@bct-electronic.com> Signed-off-by: Martin Storsjö <martin@martin.st>
2012-12-20lavr: add option for dithering during sample format conversion to s16Justin Ruggles
2012-12-17lavr: remove automatic context close/open for resampling compensationJustin Ruggles
It adds unnecessary complication for insignificant usability improvement. The user really should know if they'll need resampling compensation before opening the context. Note that only the documentation has changed. The current functionality will still work until the next major bump.
2012-12-11lavr: clarify documentation for avresample_get/set_matrix()Justin Ruggles
2012-11-11Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles
Also reorder some other #include when applicable.
2012-10-29lavr: document upper bound on number of output samples.Anton Khirnov
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-10-29lavr: add general API usage doxyAnton Khirnov
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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-07-08lavr: resampling: add filter type and Kaiser window beta to AVOptionsJustin Ruggles
2012-06-18Add Dolby/DPLII downmix support to libavresampleJohn Stebbins
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-05-09lavr: make avresample_read() with NULL output discard samples.Anton Khirnov
2012-05-01lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff typeJustin Ruggles
2012-04-25Add libavresampleJustin Ruggles
This is a new library for audio sample format, channel layout, and sample rate conversion.