aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2012-03-21 19:25:52 +0100
committerMax Kellermann <max@duempel.org>2012-03-21 19:31:04 +0100
commit8c5ebdff360021a25b43418d3cd60ea975f5e245 (patch)
tree5780d19719f2493741fd11777bc39baf5361935b /test
parent1c84f324a13bcc3d7fbd84f8d59398b1c801247a (diff)
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).
Diffstat (limited to 'test')
-rw-r--r--test/test_pcm_pack.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pcm_pack.c b/test/test_pcm_pack.c
index 85cbe5bf..de5d8b6e 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;