aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_resample.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* pcm_resample: use pcm_buffer (2/2)Max Kellermann2009-01-081-2/+2
| | | | Use the PCM buffer library for the libsamplerate output buffer.
* pcm_resample: use pcm_buffer (1/2)Max Kellermann2009-01-081-11/+11
| | | | Return a temporary buffer from pcm_resample_*() and pcm_convert().
* pcm: added pcm_convert_deinit(), pcm_resample_deinit()Max Kellermann2009-01-071-0/+2
| | | | | Free memory allocated by libsamplerate when the output or the decoder is closed.
* pcm_resample: implemented 24 bit resamplingMax Kellermann2008-10-231-0/+8
| | | | | | | Similar to pcm_resample_16(), implement pcm_resample_24(). The 24 bit implementation is very similar, but it uses src_int_to_float_array() instead of src_short_to_float_array() before sending data to libsamplerate.
* pcm_utils: moved code to pcm_resample.cMax Kellermann2008-10-231-0/+63
Separate the resampling code from the rest of pcm_utils.c. Create two sub-libraries: pcm_resample_libsamplerate.c and pcm_resample_fallback.c.