aboutsummaryrefslogtreecommitdiffstats
path: root/src/pcm_volume.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2011-10-08 10:25:06 +0200
committerMax Kellermann <max@duempel.org>2011-10-20 02:32:39 +0200
commit545685bc3209d9cfdf6c4b9aeee4715edd453dc1 (patch)
treea8c1eea32702dcb319bae836581f1938c8bc6152 /src/pcm_volume.c
parent13ad2b4dc2a11ab7bad3703cdca050dd55243b6b (diff)
downloadmpd-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_volume.c')
-rw-r--r--src/pcm_volume.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pcm_volume.c b/src/pcm_volume.c
index fd8670f4b..f732060b2 100644
--- a/src/pcm_volume.c
+++ b/src/pcm_volume.c
@@ -167,6 +167,10 @@ pcm_volume(void *buffer, size_t length,
case SAMPLE_FORMAT_S32:
pcm_volume_change_32(buffer, end, volume);
return true;
+
+ case SAMPLE_FORMAT_FLOAT:
+ /* XXX */
+ return false;
}
/* unreachable */