summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs')
-rw-r--r--apps/codecs/librm/rm.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/apps/codecs/librm/rm.c b/apps/codecs/librm/rm.c
index a126a5c..bfad7e8 100644
--- a/apps/codecs/librm/rm.c
+++ b/apps/codecs/librm/rm.c
@@ -37,18 +37,6 @@ static uint8_t get_uint8(uint8_t *buf)
return (uint8_t)buf[0];
}
-#ifdef ROCKBOX_BIG_ENDIAN
-static uint16_t get_uint16be(uint8_t *buf)
-{
- return (uint16_t)((buf[1] << 8)|buf[0]);
-}
-
-static uint32_t get_uint32be(uint8_t *buf)
-{
- return (uint32_t)((buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0]);
-}
-
-#else
static uint16_t get_uint16be(uint8_t *buf)
{
return (uint16_t)((buf[0] << 8)|buf[1]);
@@ -58,7 +46,6 @@ static uint32_t get_uint32be(uint8_t *buf)
{
return (uint32_t)((buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3]);
}
-#endif /* ROCKBOX_BIG_ENDIAN */
#ifdef TEST
#include <fcntl.h>