aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pcm/PcmVolume.cxx2
-rw-r--r--src/pcm/PcmVolume.hxx5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/pcm/PcmVolume.cxx b/src/pcm/PcmVolume.cxx
index d2a3c51f3..5c0a1fbd3 100644
--- a/src/pcm/PcmVolume.cxx
+++ b/src/pcm/PcmVolume.cxx
@@ -37,7 +37,7 @@ pcm_volume_change(typename Traits::pointer_type buffer,
sample = (sample * volume + pcm_volume_dither() +
PCM_VOLUME_1S / 2)
- / PCM_VOLUME_1S;
+ >> PCM_VOLUME_BITS;
*buffer++ = PcmClamp<F, Traits>(sample);
}
diff --git a/src/pcm/PcmVolume.hxx b/src/pcm/PcmVolume.hxx
index 502fca9ec..52102a294 100644
--- a/src/pcm/PcmVolume.hxx
+++ b/src/pcm/PcmVolume.hxx
@@ -27,6 +27,11 @@
#include <stddef.h>
/**
+ * Number of fractional bits for a fixed-point volume value.
+ */
+static constexpr unsigned PCM_VOLUME_BITS = 10;
+
+/**
* This value means "100% volume".
*/
static constexpr unsigned PCM_VOLUME_1 = 1024;