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 /src/pcm_format.c | |
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 '')
-rw-r--r-- | src/pcm_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm_format.c b/src/pcm_format.c index 31de2200e..f6d6011d6 100644 --- a/src/pcm_format.c +++ b/src/pcm_format.c @@ -76,7 +76,7 @@ pcm_allocate_24_to_24p32(struct pcm_buffer *buffer, const uint8_t *src, int32_t *dest; *dest_size_r = src_size / 3 * sizeof(*dest); dest = pcm_buffer_get(buffer, *dest_size_r); - pcm_unpack_24(dest, src, pcm_end_pointer(src, src_size), false); + pcm_unpack_24(dest, src, pcm_end_pointer(src, src_size)); return dest; } |