summaryrefslogtreecommitdiff
path: root/libavresample/avresample.h
Commit message (Collapse)AuthorAge
* avresample: Mark avresample_buffer() as pointer to constKip Warner2015-12-14
| | | | | | | | 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>
* avresample: Document avresample_open() a little betterLuca Barbato2015-11-05
| | | | Bug-Id: 911
* avresample: Introduce AVFrame-based APILuca Barbato2014-08-10
|
* avresample: Add avresample_get_out_samplesLuca Barbato2014-05-28
| | | | | Utility function to get the upper bound on the number of samples the resampler would output.
* lavr: add a function for checking whether AVAudioResampleContext is openAnton Khirnov2014-02-22
|
* lavr: add a public function for setting a custom channel mapJustin Ruggles2013-01-07
| | | | This allows reordering, duplication, and silencing of input channels.
* lavr: fix missing " in header documentationPeter Meerwald2013-01-04
| | | | | 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-19
|
* lavr: remove automatic context close/open for resampling compensationJustin Ruggles2012-12-16
| | | | | | | | | 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-11
|
* Include libavutil/channel_layout.h instead of libavutil/audioconvert.hJustin Ruggles2012-11-11
| | | | Also reorder some other #include when applicable.
* lavr: document upper bound on number of output samples.Anton Khirnov2012-10-29
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavr: add general API usage doxyAnton Khirnov2012-10-29
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavr: change the type of the data buffers to uint8_t**.Anton Khirnov2012-10-05
| | | | | | 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-08
|
* Add Dolby/DPLII downmix support to libavresampleJohn Stebbins2012-06-18
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* lavr: make avresample_read() with NULL output discard samples.Anton Khirnov2012-05-09
|
* lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff typeJustin Ruggles2012-05-01
|
* Add libavresampleJustin Ruggles2012-04-24
This is a new library for audio sample format, channel layout, and sample rate conversion.