Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-11-13 | PcmResampleFallback: use PcmBuffer instead of PcmResampler | Max Kellermann | 1 | -2/+2 | |
Lighter API. | |||||
2013-09-04 | util/Error: new error passing library | Max Kellermann | 1 | -4/+4 | |
Replaces GLib's GError. | |||||
2013-08-04 | *: use gcc.h macros instead of GLib | Max Kellermann | 1 | -2/+2 | |
2013-07-30 | pcm_buffer: convert to C++ | Max Kellermann | 1 | -6/+0 | |
2013-07-30 | pcm_resample: convert to C++ | Max Kellermann | 1 | -14/+14 | |
2013-04-09 | pcm_*: move to src/pcm/ | Max Kellermann | 1 | -0/+0 | |
2012-03-01 | pcm_convert: add method _reset() | Max Kellermann | 1 | -0/+3 | |
Resets the libsamplerate state. Not being used yet. | |||||
2011-10-20 | pcm_resample: add function pcm_resample_float() | Max Kellermann | 1 | -0/+8 | |
A version of the resampler that doesn't need int->float->int conversion. | |||||
2011-10-19 | pcm_{channels,resample}: pass channel count as integer, not uint8_t | Max Kellermann | 1 | -4/+4 | |
Reduces number of implicit integer conversions. | |||||
2011-10-08 | pcm_resample: add internal function _lsr_init() | Max Kellermann | 1 | -0/+6 | |
Let the libsamplerate code initialize itself. | |||||
2011-10-08 | pcm_resample: one-time global initialization | Max Kellermann | 1 | -0/+3 | |
Load the samplerate_converter on MPD startup. Fail if the converter name is invalid. | |||||
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 | -1/+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 | -4/+4 | |
Don't abort the whole MPD process when the conversion fails. This has been a denial-of-service attack vector for years. | |||||
2009-03-14 | pcm_resample: choose the fallback resampler at runtime | Max Kellermann | 1 | -3/+1 | |
Even if libsamplerate support is enabled, compile the fallback resampler. When the user specifies the option "samplerate_converter=internal", it is chosen in favor of libsamplerate. This may help users with a weak FPU who don't want to compile a custom MPD from source, because the fallback resampler does not use floating point operations. | |||||
2009-03-14 | pcm_resample: renamed implementation functions | Max Kellermann | 1 | -0/+79 | |
Added diversion functions to pcm_resample.c. These check which resampler is enabled at compile time (libsamplerate or fallback). This prepares the following patch. |