From 1e54b7b2942e458a5f8b5581cc61e58db7dba1b6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 11 Jan 2017 22:39:23 +0100 Subject: [PATCH] test/test_pcm: fix the DSD_U32 byte order The unit test was wrong as well. D'oh! --- test/test_pcm_export.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/test_pcm_export.cxx b/test/test_pcm_export.cxx index f94927645..ba4ef347f 100644 --- a/test/test_pcm_export.cxx +++ b/test/test_pcm_export.cxx @@ -137,10 +137,10 @@ PcmExportTest::TestDsdU32() }; static constexpr uint32_t expected[] = { - 0xcd894501, - 0xefab6723, - 0x77553311, - 0x88664422, + 0x014589cd, + 0x2367abef, + 0x11335577, + 0x22446688, }; PcmExport::Params params;