aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-03-20 16:27:43 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-03-20 16:27:43 +0000
commit115b0d06cda83dc6b34cc590ab61501120489a6b (patch)
treec1b8edd8ca2c528d2d85eafc76e9446dd6c1d510 /src
parent00e6078323d0ad0f1a8cd8c175322d083417d898 (diff)
downloadmpd-115b0d06cda83dc6b34cc590ab61501120489a6b.tar.gz
mpd-115b0d06cda83dc6b34cc590ab61501120489a6b.tar.xz
mpd-115b0d06cda83dc6b34cc590ab61501120489a6b.zip
i don't think we need to swap byte order for flac either
git-svn-id: https://svn.musicpd.org/mpd/trunk@328 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r--src/flac_decode.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/flac_decode.c b/src/flac_decode.c
index 5e51b4ea8..a684e5091 100644
--- a/src/flac_decode.c
+++ b/src/flac_decode.c
@@ -188,9 +188,6 @@ int flacSendChunk(FlacData * data) {
if(data->dc->stop) return -1;
if(data->dc->seek) return 0;
-#ifdef WORDS_BIGENDIAN
- pcm_changeBufferEndianness(data->chunk,CHUNK_SIZE,data->af->bits);
-#endif
memcpy(data->cb->chunks+data->cb->end*CHUNK_SIZE,data->chunk,
CHUNK_SIZE);
data->cb->chunkSize[data->cb->end] = data->chunk_length;