diff options
author | Max Kellermann <max@duempel.org> | 2015-10-27 00:22:22 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-10-27 11:44:23 +0100 |
commit | 15e432204e62dd5a1c873af13a679195b9645b0c (patch) | |
tree | a00687f4ac08b273a9416c36681749c42ed9dcbe /test/test_pcm_all.hxx | |
parent | 4b1630e1ec1fe5cbecc013a3e1487d9f43fcdd2f (diff) | |
download | mpd-15e432204e62dd5a1c873af13a679195b9645b0c.tar.gz mpd-15e432204e62dd5a1c873af13a679195b9645b0c.tar.xz mpd-15e432204e62dd5a1c873af13a679195b9645b0c.zip |
pcm/Order: new library to convert from FLAC to ALSA channel order
This new library is integrated in the PcmExport class and (if enabled)
converts MPD's channel order (= FLAC channel order) to ALSA channel
order.
This fixes:
http://bugs.musicpd.org/view.php?id=3147
and
http://bugs.musicpd.org/view.php?id=3255
Diffstat (limited to 'test/test_pcm_all.hxx')
-rw-r--r-- | test/test_pcm_all.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/test_pcm_all.hxx b/test/test_pcm_all.hxx index fd08ec451..e63a58211 100644 --- a/test/test_pcm_all.hxx +++ b/test/test_pcm_all.hxx @@ -126,6 +126,7 @@ class PcmExportTest : public CppUnit::TestFixture { CPPUNIT_TEST(TestPack24); CPPUNIT_TEST(TestReverseEndian); CPPUNIT_TEST(TestDop); + CPPUNIT_TEST(TestAlsaChannelOrder); CPPUNIT_TEST_SUITE_END(); public: @@ -133,6 +134,7 @@ public: void TestPack24(); void TestReverseEndian(); void TestDop(); + void TestAlsaChannelOrder(); }; #endif |