test_pcm_all.hxx 3.65 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20 21
#ifndef MPD_TEST_PCM_ALL_HXX
#define MPD_TEST_PCM_ALL_HXX
22

23 24
#include "check.h"

25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class PcmDitherTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmDitherTest);
	CPPUNIT_TEST(TestDither24);
	CPPUNIT_TEST(TestDither32);
	CPPUNIT_TEST_SUITE_END();

public:
	void TestDither24();
	void TestDither32();
};

class PcmPackTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmPackTest);
	CPPUNIT_TEST(TestPack24);
	CPPUNIT_TEST(TestUnpack24);
43
	CPPUNIT_TEST(TestUnpack24BE);
44 45 46 47 48
	CPPUNIT_TEST_SUITE_END();

public:
	void TestPack24();
	void TestUnpack24();
49
	void TestUnpack24BE();
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
};

class PcmChannelsTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmChannelsTest);
	CPPUNIT_TEST(TestChannels16);
	CPPUNIT_TEST(TestChannels32);
	CPPUNIT_TEST_SUITE_END();

public:
	void TestChannels16();
	void TestChannels32();
};

class PcmVolumeTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmVolumeTest);
	CPPUNIT_TEST(TestVolume8);
	CPPUNIT_TEST(TestVolume16);
	CPPUNIT_TEST(TestVolume24);
	CPPUNIT_TEST(TestVolume32);
	CPPUNIT_TEST(TestVolumeFloat);
	CPPUNIT_TEST_SUITE_END();

public:
	void TestVolume8();
	void TestVolume16();
	void TestVolume24();
	void TestVolume32();
	void TestVolumeFloat();
};

class PcmFormatTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmFormatTest);
	CPPUNIT_TEST(TestFormat8to16);
	CPPUNIT_TEST(TestFormat16to24);
	CPPUNIT_TEST(TestFormat16to32);
	CPPUNIT_TEST(TestFormatFloat);
	CPPUNIT_TEST_SUITE_END();

public:
	void TestFormat8to16();
	void TestFormat16to24();
	void TestFormat16to32();
	void TestFormatFloat();
};

class PcmMixTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmMixTest);
	CPPUNIT_TEST(TestMix8);
	CPPUNIT_TEST(TestMix16);
	CPPUNIT_TEST(TestMix24);
	CPPUNIT_TEST(TestMix32);
	CPPUNIT_TEST_SUITE_END();

public:
	void TestMix8();
	void TestMix16();
	void TestMix24();
	void TestMix32();
};

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
class PcmInterleaveTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmInterleaveTest);
	CPPUNIT_TEST(TestInterleave8);
	CPPUNIT_TEST(TestInterleave16);
	CPPUNIT_TEST(TestInterleave24);
	CPPUNIT_TEST(TestInterleave32);
	CPPUNIT_TEST(TestInterleave64);
	CPPUNIT_TEST_SUITE_END();

public:
	void TestInterleave8();
	void TestInterleave16();
	void TestInterleave24();
	void TestInterleave32();
	void TestInterleave64();
};

127 128 129 130 131
class PcmExportTest : public CppUnit::TestFixture {
	CPPUNIT_TEST_SUITE(PcmExportTest);
	CPPUNIT_TEST(TestShift8);
	CPPUNIT_TEST(TestPack24);
	CPPUNIT_TEST(TestReverseEndian);
132
#ifdef ENABLE_DSD
133
	CPPUNIT_TEST(TestDsdU16);
134
	CPPUNIT_TEST(TestDsdU32);
135
	CPPUNIT_TEST(TestDop);
136
#endif
137
	CPPUNIT_TEST(TestAlsaChannelOrder);
138 139 140 141 142 143
	CPPUNIT_TEST_SUITE_END();

public:
	void TestShift8();
	void TestPack24();
	void TestReverseEndian();
144
#ifdef ENABLE_DSD
145
	void TestDsdU16();
146
	void TestDsdU32();
147
	void TestDop();
148
#endif
149
	void TestAlsaChannelOrder();
150 151
};

152
#endif