Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-07-30 | pcm_buffer: convert to C++ | Max Kellermann | 1 | -9/+9 | |
2013-04-09 | pcm_*: move to src/pcm/ | Max Kellermann | 1 | -0/+0 | |
2013-02-01 | PcmChannels: merge duplicate code with a template | Max Kellermann | 1 | -38/+9 | |
2013-01-31 | pcm_*: convert to C++ | Max Kellermann | 1 | -10/+12 | |
2012-10-02 | pcm_channels: support floating point samples | Max Kellermann | 1 | -0/+71 | |
2011-10-20 | pcm_*: add "restrict" keywords | Max Kellermann | 1 | -16/+23 | |
Allow more compiler optimizations. | |||||
2011-10-19 | pcm_channels: pass an "end" pointer instead of a sample count | Max Kellermann | 1 | -39/+40 | |
2011-10-19 | pcm_{channels,resample}: pass channel count as integer, not uint8_t | Max Kellermann | 1 | -6/+6 | |
Reduces number of implicit integer conversions. | |||||
2011-10-19 | pcm_{channels,format}: add alignment assertions | Max Kellermann | 1 | -0/+6 | |
2011-01-29 | copyright year 2011 | Max Kellermann | 1 | -1/+1 | |
2009-12-31 | Update copyright notices. | Avuton Olrich | 1 | -1/+1 | |
2009-11-12 | include config.h in all sources | Max Kellermann | 1 | -0/+1 | |
After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue. | |||||
2009-07-23 | pcm_convert: use GError for error handling | Max Kellermann | 1 | -17/+3 | |
Don't abort the whole MPD process when the conversion fails. This has been a denial-of-service attack vector for years. | |||||
2009-07-22 | pcm_channels: num_channels is unsigned | Max Kellermann | 1 | -6/+6 | |
You cannot have a negative number of channels, let's pass it as uint8_t instead of int8_t. | |||||
2009-03-13 | all: Update copyright header. | Avuton Olrich | 1 | -6/+7 | |
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-02 | pcm_channels: added implementation for 32 bit samples | Max Kellermann | 1 | -0/+69 | |
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. | |||||
2009-01-07 | pcm_channels: use pcm_buffer | Max Kellermann | 1 | -24/+15 | |
Replace a "static" buffer with the PCM buffer library. | |||||
2009-01-03 | pcm: use GLib instead of utils.h | Max Kellermann | 1 | -3/+2 | |
2008-12-29 | pcm: use GLib logging | Max Kellermann | 1 | -5/+9 | |
2008-10-23 | pcm_channels: added 24 bit implementations | Max Kellermann | 1 | -0/+79 | |
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. | |||||
2008-10-23 | pcm_utils: moved channel conversion functions to pcm_channels.c | Max Kellermann | 1 | -0/+102 | |
Separate code from pcm_utils.c to keep it small and simple. |