aboutsummaryrefslogtreecommitdiff
path: root/src/pcm_channels.h
Commit message (Collapse)AuthorAge
* pcm_{channels,resample}: pass channel count as integer, not uint8_tMax Kellermann2011-10-19
| | | | Reduces number of implicit integer conversions.
* copyright year 2011Max Kellermann2011-01-29
|
* Update copyright notices.Avuton Olrich2009-12-31
|
* pcm_channels: num_channels is unsignedMax Kellermann2009-07-22
| | | | | You cannot have a negative number of channels, let's pass it as uint8_t instead of int8_t.
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | 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.
* pcm_channels: added implementation for 32 bit samplesMax Kellermann2009-03-02
| | | | | | Some 24 bit code can be reused. The 32 bit variant has to use 64 bit integers, because 32 bit integers could overflow. This may be a performance hit on 32 bit CPUs.
* pcm: added API documentationMax Kellermann2009-02-21
|
* pcm_channels: use pcm_bufferMax Kellermann2009-01-07
| | | | Replace a "static" buffer with the PCM buffer library.
* pcm_channels: added 24 bit implementationsMax Kellermann2008-10-23
| | | | | The 24 bit implementation is mostly copy'n'paste of the 16 bit version, except that the data type is int32_t instead of int16_t.
* pcm_utils: moved channel conversion functions to pcm_channels.cMax Kellermann2008-10-23
Separate code from pcm_utils.c to keep it small and simple.