1
0
Fork 0
forked from len0rd/rockbox

Speex encoder specially tailored to create voice UI snippets. Small fixups to libspeex to allow it to be built.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15640 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2007-11-16 15:35:37 +00:00
parent 88c4748a4b
commit 65458ee71c
9 changed files with 332 additions and 4 deletions

View file

@ -47,7 +47,7 @@
/** Convert little endian */
static inline spx_int32_t le_int(spx_int32_t i)
{
#if 1
#ifdef ROCKBOX
return letoh32(i);
#elif !defined(__LITTLE_ENDIAN__) && ( defined(WORDS_BIGENDIAN) || defined(__BIG_ENDIAN__) )
spx_uint32_t ui, ret;