diff options
author | Max Kellermann <max@duempel.org> | 2012-03-21 19:25:52 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-03-21 19:31:04 +0100 |
commit | 8c5ebdff360021a25b43418d3cd60ea975f5e245 (patch) | |
tree | 5780d19719f2493741fd11777bc39baf5361935b /test | |
parent | 1c84f324a13bcc3d7fbd84f8d59398b1c801247a (diff) | |
download | mpd-8c5ebdff360021a25b43418d3cd60ea975f5e245.tar.gz mpd-8c5ebdff360021a25b43418d3cd60ea975f5e245.tar.xz mpd-8c5ebdff360021a25b43418d3cd60ea975f5e245.zip |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |