Header - Mp3 file format, id3 tags. More...
Go to the source code of this file.
Defines | |
| #define | ID3_STRING_ERROR (NULL) |
| magic value returned when an error occurs (string) | |
| #define | ID3_INT_ERROR ((unsigned)-1) |
| magic value returned when an error occurs (integer) | |
| #define | ID3_NB_GENRES 127 |
| number of music genres | |
Functions | |
| char * | id3_get_string (struct id3_tag *tag, char const *frameid) |
| get a id3 tag value (string) | |
| unsigned long | id3_get_int (struct id3_tag *tag, char const *frameid) |
| get a id3 tag value (string) | |
Variables | |
| const char * | id3_genres [ID3_NB_GENRES] |
| music genres defined | |
Header - Mp3 file format, id3 tags.
Definition in file mp3_id3.h.
| unsigned long id3_get_int | ( | struct id3_tag * | tag, | |
| char const * | frameid | |||
| ) |
get a id3 tag value (string)
| tag | pointer to tag structure | |
| frameid | the value to get - ascii |
Definition at line 134 of file mp3_id3.c.
References check, id3_get_string(), and ID3_INT_ERROR.
| char* id3_get_string | ( | struct id3_tag * | tag, | |
| char const * | frameid | |||
| ) |
get a id3 tag value (string)
| tag | pointer to tag structure | |
| frameid | the value to get - ascii |
Definition at line 71 of file mp3_id3.c.
References check, id3_field_getlatin1s(), id3_latin1duplicate(), and ID3_STRING_ERROR.
Referenced by id3_get_int().
1.6.1