test_pcm_mix.cxx 2.21 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2021 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * http://www.musicpd.org
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "test_pcm_util.hxx"
21 22
#include "pcm/Mix.hxx"
#include "pcm/Dither.hxx"
23

24 25
#include <gtest/gtest.h>

26
template<typename T, SampleFormat format, typename G=RandomInt<T>>
27
static void
28 29
TestPcmMix(G g=G())
{
30
	constexpr unsigned N = 509;
31 32 33
	const auto src1 = TestDataBuffer<T, N>(g);
	const auto src2 = TestDataBuffer<T, N>(g);

34 35
	PcmDither dither;

36 37
	/* portion1=1.0: result must be equal to src1 */
	auto result = src1;
38 39
	bool success = pcm_mix(dither,
			       result.begin(), src2.begin(), sizeof(result),
40
			       format, 1.0);
41
	ASSERT_TRUE(success);
42
	AssertEqualWithTolerance(result, src1, 3);
43 44 45

	/* portion1=0.0: result must be equal to src2 */
	result = src1;
46
	success = pcm_mix(dither, result.begin(), src2.begin(), sizeof(result),
47
			  format, 0.0);
48
	ASSERT_TRUE(success);
49
	AssertEqualWithTolerance(result, src2, 3);
50 51 52

	/* portion1=0.5 */
	result = src1;
53
	success = pcm_mix(dither, result.begin(), src2.begin(), sizeof(result),
54
			  format, 0.5);
55
	ASSERT_TRUE(success);
56 57 58 59 60

	auto expected = src1;
	for (unsigned i = 0; i < N; ++i)
		expected[i] = (int64_t(src1[i]) + int64_t(src2[i])) / 2;

61 62
	for (unsigned i = 0; i < N; ++i)
		EXPECT_NEAR(result[i], expected[i], 3);
63 64
}

65
TEST(PcmTest, Mix8)
66
{
67
	TestPcmMix<int8_t, SampleFormat::S8>();
68 69
}

70
TEST(PcmTest, Mix16)
71
{
72
	TestPcmMix<int16_t, SampleFormat::S16>();
73 74
}

75
TEST(PcmTest, Mix24)
76
{
77
	TestPcmMix<int32_t, SampleFormat::S24_P32>(RandomInt24());
78 79
}

80
TEST(PcmTest, Mix32)
81
{
82
	TestPcmMix<int32_t, SampleFormat::S32>();
83
}