mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-19 18:12:54 -05:00
Unify fourcc macro and some style changes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23664 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
556daaf34a
commit
2e28c1853b
8 changed files with 79 additions and 75 deletions
|
|
@ -29,6 +29,8 @@
|
|||
#define TAG_NAME_LENGTH 32
|
||||
#define TAG_VALUE_LENGTH 128
|
||||
|
||||
#define FOURCC(a,b,c,d) (((a)<<24) | ((b) << 16) | ((c) << 8) | (d))
|
||||
|
||||
enum tagtype { TAGTYPE_APE = 1, TAGTYPE_VORBIS };
|
||||
|
||||
bool read_ape_tags(int fd, struct mp3entry* id3);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue