mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-16 00:22:29 -05:00
add gapless playback for Nero encoded AAC files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22984 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
67ded6ce9d
commit
c48af23c7e
3 changed files with 38 additions and 0 deletions
|
|
@ -42,12 +42,14 @@ int read_uint8(int fd, uint8_t* buf);
|
|||
#ifdef ROCKBOX_BIG_ENDIAN
|
||||
#define read_uint16be(fd,buf) read((fd), (buf), 2)
|
||||
#define read_uint32be(fd,buf) read((fd), (buf), 4)
|
||||
#define read_uint64be(fd,buf) read((fd), (buf), 8)
|
||||
int read_uint16le(int fd, uint16_t* buf);
|
||||
int read_uint32le(int fd, uint32_t* buf);
|
||||
int read_uint64le(int fd, uint64_t* buf);
|
||||
#else
|
||||
int read_uint16be(int fd, uint16_t* buf);
|
||||
int read_uint32be(int fd, uint32_t* buf);
|
||||
int read_uint64be(int fd, uint64_t* buf);
|
||||
#define read_uint16le(fd,buf) read((fd), (buf), 2)
|
||||
#define read_uint32le(fd,buf) read((fd), (buf), 4)
|
||||
#define read_uint64le(fd,buf) read((fd), (buf), 8)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue