test/test_pcm_export: extend the DSD_U32 test

This commit is contained in:
Max Kellermann 2016-02-28 09:37:01 +01:00
parent a1add27c4c
commit 7d0ca894a4

View File

@ -123,11 +123,15 @@ PcmExportTest::TestDsdU32()
static constexpr uint8_t src[] = {
0x01, 0x23, 0x45, 0x67,
0x89, 0xab, 0xcd, 0xef,
0x11, 0x22, 0x33, 0x44,
0x55, 0x66, 0x77, 0x88,
};
static constexpr uint32_t expected[] = {
0xcd894501,
0xefab6723,
0x77553311,
0x88664422,
};
PcmExport::Params params;