forked from len0rd/rockbox
Replace SWAB16 and SWAB32 with a comprehensive set of byte-swap macros - letoh16, letoh32, htole16, htole32, betoh16, betoh32, htobe16 and htobe32
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7584 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1c3a83c44e
commit
9e19c95d8e
8 changed files with 89 additions and 60 deletions
|
|
@ -482,7 +482,7 @@ enum codec_status codec_start(struct codec_api* api)
|
|||
else if (bitspersample > 8) {
|
||||
/* Byte-swap data. */
|
||||
for (i=0;i<n/2;i++) {
|
||||
int16_samples[i]=(int16_t)SWAB16(wavbuf[i]);
|
||||
int16_samples[i]=(int16_t)letoh16(wavbuf[i]);
|
||||
}
|
||||
wavbufsize = n;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue