summaryrefslogtreecommitdiff
path: root/test/test_pcm_all.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_pcm_all.hxx')
-rw-r--r--test/test_pcm_all.hxx152
1 files changed, 0 insertions, 152 deletions
diff --git a/test/test_pcm_all.hxx b/test/test_pcm_all.hxx
deleted file mode 100644
index 594012468..000000000
--- a/test/test_pcm_all.hxx
+++ /dev/null
@@ -1,152 +0,0 @@
-/*
- * Copyright 2003-2017 The Music Player Daemon Project
- * 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.
- */
-
-#ifndef MPD_TEST_PCM_ALL_HXX
-#define MPD_TEST_PCM_ALL_HXX
-
-#include "check.h"
-
-#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);
- CPPUNIT_TEST(TestUnpack24BE);
- CPPUNIT_TEST_SUITE_END();
-
-public:
- void TestPack24();
- void TestUnpack24();
- void TestUnpack24BE();
-};
-
-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();
-};
-
-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();
-};
-
-class PcmExportTest : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(PcmExportTest);
- CPPUNIT_TEST(TestShift8);
- CPPUNIT_TEST(TestPack24);
- CPPUNIT_TEST(TestReverseEndian);
-#ifdef ENABLE_DSD
- CPPUNIT_TEST(TestDsdU16);
- CPPUNIT_TEST(TestDsdU32);
- CPPUNIT_TEST(TestDop);
-#endif
- CPPUNIT_TEST(TestAlsaChannelOrder);
- CPPUNIT_TEST_SUITE_END();
-
-public:
- void TestShift8();
- void TestPack24();
- void TestReverseEndian();
-#ifdef ENABLE_DSD
- void TestDsdU16();
- void TestDsdU32();
- void TestDop();
-#endif
- void TestAlsaChannelOrder();
-};
-
-#endif