summaryrefslogtreecommitdiff
path: root/firmware/id3.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/id3.c')
-rw-r--r--firmware/id3.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/id3.c b/firmware/id3.c
index 71572217a1..dd3fb1ab8a 100644
--- a/firmware/id3.c
+++ b/firmware/id3.c
@@ -141,9 +141,11 @@ static struct tag_resolver taglist[] = {
141 { "TIT2", 4, offsetof(struct mp3entry, title), NULL }, 141 { "TIT2", 4, offsetof(struct mp3entry, title), NULL },
142 { "TT2", 3, offsetof(struct mp3entry, title), NULL }, 142 { "TT2", 3, offsetof(struct mp3entry, title), NULL },
143 { "TALB", 4, offsetof(struct mp3entry, album), NULL }, 143 { "TALB", 4, offsetof(struct mp3entry, album), NULL },
144 { "TAL", 3, offsetof(struct mp3entry, album), NULL },
145 { "TRK", 3, offsetof(struct mp3entry, track_string), &parsetracknum },
144 { "TRCK", 4, offsetof(struct mp3entry, track_string), &parsetracknum }, 146 { "TRCK", 4, offsetof(struct mp3entry, track_string), &parsetracknum },
145 { "TYER", 4, offsetof(struct mp3entry, year_string), &parseyearnum }, 147 { "TYER", 4, offsetof(struct mp3entry, year_string), &parseyearnum },
146 { "TYR", 3, offsetof(struct mp3entry, year_string), &parseyearnum }, 148 { "TYE", 3, offsetof(struct mp3entry, year_string), &parseyearnum },
147 { "TCON", 4, offsetof(struct mp3entry, genre_string), &parsegenre }, 149 { "TCON", 4, offsetof(struct mp3entry, genre_string), &parsegenre },
148 { "TCOM", 4, offsetof(struct mp3entry, composer), NULL } 150 { "TCOM", 4, offsetof(struct mp3entry, composer), NULL }
149}; 151};