summaryrefslogtreecommitdiff
path: root/src/pcm_resample.h
AgeCommit message (Collapse)Author
2009-03-13all: Update copyright header.Avuton Olrich
This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
2009-03-02pcm_resample: use 24 bit resampling code for 32 bit samplesMax Kellermann
Resampling 32 bit samples is the same as resampling 24 bit samples - both are stored in the int32_t type.
2009-02-21pcm: added API documentationMax Kellermann
2009-01-08pcm_resample: use pcm_buffer (2/2)Max Kellermann
Use the PCM buffer library for the libsamplerate output buffer.
2009-01-08pcm_resample: use pcm_buffer (1/2)Max Kellermann
Return a temporary buffer from pcm_resample_*() and pcm_convert().
2009-01-07pcm: added pcm_convert_deinit(), pcm_resample_deinit()Max Kellermann
Free memory allocated by libsamplerate when the output or the decoder is closed.
2008-10-23pcm_resample: implemented 24 bit resamplingMax Kellermann
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.
2008-10-23pcm_utils: moved code to pcm_resample.cMax Kellermann
Separate the resampling code from the rest of pcm_utils.c. Create two sub-libraries: pcm_resample_libsamplerate.c and pcm_resample_fallback.c.