| Commit message (Expand) | Author | Age | Files | Lines |
* | pcm_utils: added 24 bit conversion functions | Max Kellermann | 2008-10-23 | 1 | -0/+108 |
* | pcm_utils: generic pcm_convert_size() implementation | Max Kellermann | 2008-10-23 | 1 | -21/+2 |
* | pcm_utils: moved code to pcm_convert_16() | Max Kellermann | 2008-10-23 | 1 | -21/+39 |
* | pcm_utils: moved channel conversion functions to pcm_channels.c | Max Kellermann | 2008-10-23 | 1 | -82/+4 |
* | pcm_utils: moved code to pcm_resample.c | Max Kellermann | 2008-10-23 | 1 | -162/+6 |
* | pcm_dither: added generic 24 to 16 bit dithering | Max Kellermann | 2008-10-23 | 1 | -8/+10 |
* | output_buffer: don't split frames | Max Kellermann | 2008-10-23 | 1 | -0/+3 |
* | pcm_utils: added pcm_convert_init() | Max Kellermann | 2008-10-21 | 1 | -0/+5 |
* | pcm_utils: no CamelCase | Max Kellermann | 2008-10-21 | 1 | -64/+63 |
* | pcm_utils: renamed ConvState to struct pcm_convert_state | Max Kellermann | 2008-10-21 | 1 | -3/+5 |
* | pcm_utils: support any number of channels in pcm_sizeOfConvBuffer() | Max Kellermann | 2008-10-12 | 1 | -11/+2 |
* | pcm_utils: support converting N channels to stereo | Max Kellermann | 2008-10-12 | 1 | -0/+26 |
* | pcm_utils: pass output channel count to pcm_convertChannels() | Max Kellermann | 2008-10-12 | 1 | -35/+22 |
* | pcm_utils: moved code from pcm_convertChannels() to separate functions | Max Kellermann | 2008-10-12 | 1 | -20/+32 |
* | pcm_utils: pass int16_t* where appropriate | Max Kellermann | 2008-10-12 | 1 | -12/+15 |
* | audio_format: renamed sampleRate to sample_rate | Max Kellermann | 2008-10-10 | 1 | -5/+5 |
* | audio_format: unsigned integers | Max Kellermann | 2008-10-10 | 1 | -3/+3 |
* | pcm: fix const flac in pcm_convertSampleRate() | Max Kellermann | 2008-10-09 | 1 | -1/+1 |
* | pcm: fixed software volume, broken by unsigned integer | Max Kellermann | 2008-10-09 | 1 | -6/+3 |
* | don't include os_compat.h | Max Kellermann | 2008-10-08 | 1 | -1/+4 |
* | pcm_utils: 24 bit support | Max Kellermann | 2008-09-29 | 1 | -0/+67 |
* | pcm_utils: moved code to special 8/16 bit functions | Max Kellermann | 2008-09-29 | 1 | -72/+93 |
* | pcm_utils: pass only one buffer size to pcm_mix() | Max Kellermann | 2008-09-29 | 1 | -17/+9 |
* | assume stdint.h and stddef.h are available | Max Kellermann | 2008-09-29 | 1 | -2/+0 |
* | Switch to C99 types (retaining compat with old compilers) | Eric Wong | 2008-09-29 | 1 | -32/+32 |
* | pcm_utils: added pcm_range() | Max Kellermann | 2008-09-28 | 1 | -10/+18 |
* | pcm_utils: added inline function pcm_dither() | Max Kellermann | 2008-09-28 | 1 | -8/+10 |
* | audio_format: converted typedef AudioFormat to struct audio_format | Max Kellermann | 2008-09-07 | 1 | -7/+10 |
* | fix -Wcast-qual -Wwrite-strings warnings | Max Kellermann | 2008-09-07 | 1 | -9/+10 |
* | enable -Wpointer-arith, -Wstrict-prototypes | Max Kellermann | 2008-08-26 | 1 | -2/+4 |
* | more const pointers in pcm_utils.[ch] | Max Kellermann | 2008-04-15 | 1 | -3/+4 |
* | decode: fix some uninitialized variable warnings | Eric Wong | 2008-04-12 | 1 | -1/+1 |
* | missing const in disabled code path | Max Kellermann | 2008-04-12 | 1 | -1/+1 |
* | constant pointers | Max Kellermann | 2008-04-12 | 1 | -5/+5 |
* | use constant pointers when possible | Max Kellermann | 2008-04-12 | 1 | -13/+12 |
* | use size_t | Max Kellermann | 2008-03-26 | 1 | -1/+1 |
* | Cleanup #includes of standard system headers and put them in one place | Eric Wong | 2008-01-03 | 1 | -4/+1 |
* | pcm_utils: gcc 2.95 compile fix (extra semi-colon) | Eric Wong | 2007-09-10 | 1 | -1/+1 |
* | Changing all calls to ERROR() followed by exit(EXIT_FAILURE) with a single | J. Alexander Treuman | 2007-05-26 | 1 | -8/+4 |
* | Cleaning up pcm_getSampleRateConverter. | J. Alexander Treuman | 2007-05-26 | 1 | -23/+27 |
* | Exit with an error if channel count isn't 1 or 2. | J. Alexander Treuman | 2007-05-26 | 1 | -0/+4 |
* | Make pcm_convertAudioFormat return the buffer size. This is necessary | J. Alexander Treuman | 2007-05-26 | 1 | -17/+20 |
* | Reverting to the full lsr API. Turns out the simple API needs all of the | J. Alexander Treuman | 2007-05-24 | 1 | -29/+52 |
* | Tidying up pcm_utils.c a bit more. | J. Alexander Treuman | 2007-05-23 | 1 | -8/+9 |
* | Switching to the lsr simple API. The problem with the full API is that the | J. Alexander Treuman | 2007-05-23 | 1 | -19/+7 |
* | Split pcm_convertAudioFormat into separate functions for bitrate, channel, | J. Alexander Treuman | 2007-05-22 | 1 | -168/+207 |
* | Cleaning up/correcting some comments. | J. Alexander Treuman | 2007-05-22 | 1 | -10/+7 |
* | Reindenting | J. Alexander Treuman | 2007-05-22 | 1 | -10/+12 |
* | The massive copyright update | Avuton Olrich | 2007-04-05 | 1 | -1/+1 |
* | pcm_utils: fix libsamplerate compilation with non-C99 compilers | Eric Wong | 2007-02-19 | 1 | -4/+12 |