summaryrefslogtreecommitdiffstats
path: root/libavresample/avresample.h
Commit message (Collapse)AuthorAgeFilesLines
* avresample: remove deprecated attribute from the AVAudioResampleContext structJames Almer2018-01-091-1/+1
| | | | | | | | | | 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>
* lavr: deprecate the entire libraryRostislav Pehlivanov2018-01-041-7/+99
| | | | | | | | | | | | | 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>
* Merge commit 'a1d9de304fe63614e3aa8117fef17491fa80093d'Clément Bœsch2017-04-031-2/+2
|\ | | | | | | | | | | | | * commit 'a1d9de304fe63614e3aa8117fef17491fa80093d': Fix some mismatches between function parameter and doxygen parameter names. Merged-by: Clément Bœsch <u@pkh.me>
| * Fix some mismatches between function parameter and doxygen parameter names.Diego Biurrun2016-11-211-2/+2
| |
* | doxygen: Standardize root-level modulesTimothy Gu2016-08-021-1/+1
| |
* | Merge commit 'cc4c24208159200b7aff5b5c313903c7f23fa345'Hendrik Leppkes2016-01-021-2/+3
|\ \ | |/ | | | | | | | | | | * commit 'cc4c24208159200b7aff5b5c313903c7f23fa345': avresample: Mark avresample_buffer() as pointer to const Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * avresample: Mark avresample_buffer() as pointer to constKip Warner2015-12-141-2/+3
| | | | | | | | | | | | | | | | 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>
* | Merge commit 'e2854e731f843906d9a9a5b882bed872341999fd'Hendrik Leppkes2015-11-101-0/+4
|\ \ | |/ | | | | | | | | | | * commit 'e2854e731f843906d9a9a5b882bed872341999fd': avresample: Document avresample_open() a little better Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * avresample: Document avresample_open() a little betterLuca Barbato2015-11-051-0/+4
| | | | | | | | Bug-Id: 911
* | Merge commit 'fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45'Michael Niedermayer2014-08-101-0/+69
|\ \ | |/ | | | | | | | | | | | | | | | | | | * commit 'fb1ddcdc8f51b9d261ae8e9c26b91e81f7b6bf45': avresample: Introduce AVFrame-based API Conflicts: libavresample/utils.c libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avresample: Introduce AVFrame-based APILuca Barbato2014-08-101-0/+69
| |
* | Merge commit 'b2d45654220503224aa94e78cdff19ec624e9342'Michael Niedermayer2014-05-291-7/+19
|\ \ | |/ | | | | | | | | | | * commit 'b2d45654220503224aa94e78cdff19ec624e9342': avresample: Add avresample_get_out_samples Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avresample: Add avresample_get_out_samplesLuca Barbato2014-05-281-7/+19
| | | | | | | | | | Utility function to get the upper bound on the number of samples the resampler would output.
* | Merge commit '7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731'Michael Niedermayer2014-02-221-0/+8
|\ \ | |/ | | | | | | | | | | * commit '7e86c27b4ee9e5a3fbe6cf5249b9d918b2a5e731': lavr: add a function for checking whether AVAudioResampleContext is open Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavr: add a function for checking whether AVAudioResampleContext is openAnton Khirnov2014-02-221-0/+8
| |
* | Reinstate proper FFmpeg license for all files.Thilo Borgmann2013-08-301-5/+5
|/
* lavr: add a public function for setting a custom channel mapJustin Ruggles2013-01-071-0/+30
| | | | This allows reordering, duplication, and silencing of input channels.
* lavr: fix missing " in header documentationPeter Meerwald2013-01-041-1/+1
| | | | | Signed-off-by: Peter Meerwald <p.meerwald@bct-electronic.com> Signed-off-by: Martin Storsjö <martin@martin.st>
* lavr: add option for dithering during sample format conversion to s16Justin Ruggles2012-12-191-0/+9
|
* lavr: remove automatic context close/open for resampling compensationJustin Ruggles2012-12-161-5/+4
| | | | | | | | | 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.
* lavr: clarify documentation for avresample_get/set_matrix()Justin Ruggles2012-12-111-1/+5
|
* Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles2012-11-111-1/+1
| | | | Also reorder some other #include when applicable.
* lavr: document upper bound on number of output samples.Anton Khirnov2012-10-291-0/+4
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavr: add general API usage doxyAnton Khirnov2012-10-291-0/+71
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavr: change the type of the data buffers to uint8_t**.Anton Khirnov2012-10-051-3/+3
| | | | | | This is more consistent with what the rest of Libav does. This breaks API.
* lavr: resampling: add filter type and Kaiser window beta to AVOptionsJustin Ruggles2012-07-081-0/+7
|
* Add Dolby/DPLII downmix support to libavresampleJohn Stebbins2012-06-181-1/+2
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* lavr: make avresample_read() with NULL output discard samples.Anton Khirnov2012-05-091-1/+2
|
* lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff typeJustin Ruggles2012-05-011-1/+1
|
* Add libavresampleJustin Ruggles2012-04-241-0/+283
This is a new library for audio sample format, channel layout, and sample rate conversion.
OpenPOWER on IntegriCloud