pcm/export: add #ifdef ENABLE_DSD to struct Params

This commit is contained in:
Max Kellermann
2016-02-27 08:02:01 +01:00
parent fb4f02cd38
commit 5628dcf47e
3 changed files with 10 additions and 0 deletions

View File

@@ -115,6 +115,8 @@ PcmExportTest::TestReverseEndian()
CPPUNIT_ASSERT(memcmp(dest.data, expected4, dest.size) == 0);
}
#ifdef ENABLE_DSD
void
PcmExportTest::TestDsdU32()
{
@@ -165,6 +167,8 @@ PcmExportTest::TestDop()
CPPUNIT_ASSERT(memcmp(dest.data, expected, dest.size) == 0);
}
#endif
template<SampleFormat F, class Traits=SampleTraits<F>>
static void
TestAlsaChannelOrder51()