diff options
author | Max Kellermann <max@duempel.org> | 2011-10-08 10:25:06 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-10-20 02:32:39 +0200 |
commit | 545685bc3209d9cfdf6c4b9aeee4715edd453dc1 (patch) | |
tree | a8c1eea32702dcb319bae836581f1938c8bc6152 /src/pcm_mix.c | |
parent | 13ad2b4dc2a11ab7bad3703cdca050dd55243b6b (diff) | |
download | mpd-545685bc3209d9cfdf6c4b9aeee4715edd453dc1.tar.gz mpd-545685bc3209d9cfdf6c4b9aeee4715edd453dc1.tar.xz mpd-545685bc3209d9cfdf6c4b9aeee4715edd453dc1.zip |
audio_format: basic support for floating point samples
Support for conversion from float to 16, 24 and 32 bit integer
samples.
Diffstat (limited to 'src/pcm_mix.c')
-rw-r--r-- | src/pcm_mix.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pcm_mix.c b/src/pcm_mix.c index ef81f44a4..b94089cfb 100644 --- a/src/pcm_mix.c +++ b/src/pcm_mix.c @@ -128,6 +128,10 @@ pcm_add_vol(void *buffer1, const void *buffer2, size_t size, pcm_add_vol_32((int32_t *)buffer1, (const int32_t *)buffer2, size / 4, vol1, vol2); return true; + + case SAMPLE_FORMAT_FLOAT: + /* XXX */ + return false; } /* unreachable */ @@ -216,6 +220,10 @@ pcm_add(void *buffer1, const void *buffer2, size_t size, case SAMPLE_FORMAT_S32: pcm_add_32((int32_t *)buffer1, (const int32_t *)buffer2, size / 4); return true; + + case SAMPLE_FORMAT_FLOAT: + /* XXX */ + return false; } /* unreachable */ |