From 8c5ebdff360021a25b43418d3cd60ea975f5e245 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 21 Mar 2012 19:25:52 +0100 Subject: audio_format: remove the reverse_endian attribute Eliminate support for reverse endian samples from the MPD core. This moves a lot of complexity to the plugins that really need it (only ALSA and CDIO currently). --- test/test_pcm_pack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/test_pcm_pack.c b/test/test_pcm_pack.c index 85cbe5bfc..de5d8b6e5 100644 --- a/test/test_pcm_pack.c +++ b/test/test_pcm_pack.c @@ -45,7 +45,7 @@ test_pcm_pack_24(void) uint8_t dest[N * 3]; - pcm_pack_24(dest, src, src + N, false); + pcm_pack_24(dest, src, src + N); for (unsigned i = 0; i < N; ++i) { int32_t d; @@ -72,7 +72,7 @@ test_pcm_unpack_24(void) int32_t dest[N]; - pcm_unpack_24(dest, src, src + G_N_ELEMENTS(src), false); + pcm_unpack_24(dest, src, src + G_N_ELEMENTS(src)); for (unsigned i = 0; i < N; ++i) { int32_t s; -- cgit v1.2.3