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).
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user