From af99f9fc9000e76990795a164dd51fd2bafc34c3 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 5 Jul 2019 21:01:01 +0200 Subject: pcm/Volume: convert S16 to S24 to preserve quality and reduce noise Applying software volume to S16 samples means several bits of precision are lost; at 25% volume, two bits are lost. Additionally, dithering adds some noise. The problem gets worse when you apply the software volume code twice: for the software mixer volume, and again for the replay gain. This loses some more precision and adds even more dithering noise, which can become audible (see https://github.com/MusicPlayerDaemon/MPD/issues/542). By converting everything to 24 bit, we need to shift only two bits to the right instead of ten, losing nearly no precision, and dithering is not needed. Even if the output device is unable to play S24 directly, we can convert back to S16 with only one stage of dithering. Closes https://github.com/MusicPlayerDaemon/MPD/issues/542 --- test/test_pcm_volume.cxx | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) (limited to 'test/test_pcm_volume.cxx') diff --git a/test/test_pcm_volume.cxx b/test/test_pcm_volume.cxx index 536fee9e3..35ad845de 100644 --- a/test/test_pcm_volume.cxx +++ b/test/test_pcm_volume.cxx @@ -36,7 +36,7 @@ TestVolume(G g=G()) typedef typename Traits::value_type value_type; PcmVolume pv; - EXPECT_EQ(pv.Open(F), F); + EXPECT_EQ(pv.Open(F, false), F); constexpr size_t N = 509; static value_type zero[N]; @@ -77,6 +77,47 @@ TEST(PcmTest, Volume16) TestVolume(); } +TEST(PcmTest, Volume16to32) +{ + constexpr SampleFormat F = SampleFormat::S16; + typedef int16_t value_type; + RandomInt g; + + PcmVolume pv; + EXPECT_EQ(pv.Open(F, true), SampleFormat::S24_P32); + + constexpr size_t N = 509; + static value_type zero[N]; + const auto _src = TestDataBuffer(g); + const ConstBuffer src(_src, sizeof(_src)); + + pv.SetVolume(0); + auto dest = pv.Apply(src); + EXPECT_EQ(src.size * 2, dest.size); + EXPECT_EQ(0, memcmp(dest.data, zero, sizeof(zero))); + + pv.SetVolume(PCM_VOLUME_1); + dest = pv.Apply(src); + EXPECT_EQ(src.size * 2, dest.size); + auto s = ConstBuffer::FromVoid(src); + auto d = ConstBuffer::FromVoid(dest); + for (size_t i = 0; i < N; ++i) + EXPECT_EQ(d[i], s[i] << 8); + + pv.SetVolume(PCM_VOLUME_1 / 2); + dest = pv.Apply(src); + EXPECT_EQ(src.size * 2, dest.size); + + s = ConstBuffer::FromVoid(src); + d = ConstBuffer::FromVoid(dest); + for (unsigned i = 0; i < N; ++i) { + const int32_t expected = (s[i] << 8) / 2; + EXPECT_EQ(d[i], expected); + } + + pv.Close(); +} + TEST(PcmTest, Volume24) { TestVolume(RandomInt24()); @@ -90,7 +131,7 @@ TEST(PcmTest, Volume32) TEST(PcmTest, VolumeFloat) { PcmVolume pv; - pv.Open(SampleFormat::FLOAT); + pv.Open(SampleFormat::FLOAT, false); constexpr size_t N = 509; static float zero[N]; -- cgit v1.2.3