1
0
Fork 0
forked from len0rd/rockbox

FS#9139 - support for ver 1.1 scrobbler log files. Upload any old files first - uploading software may need updating, see the LastFMLog wiki page

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18732 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Keevil 2008-10-07 18:39:44 +00:00
parent 7eb194477a
commit 2c170356f3
6 changed files with 52 additions and 6 deletions

View file

@ -465,6 +465,9 @@ static int asf_parse_header(int fd, struct mp3entry* id3,
id3buf = value;
id3buf_remaining = buf_len;
}
} else if (!strcmp("MusicBrainz/Track Id", utf8buf)) {
id3->mb_track_id = id3buf;
asf_utf16LEdecode(fd, length, &id3buf, &id3buf_remaining);
} else {
lseek(fd, length, SEEK_CUR);
}