1
0
Fork 0
forked from len0rd/rockbox

Now track total playtime should be accessible as well by using Pm and Ps virtual tags.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13133 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2007-04-12 20:21:56 +00:00
parent 9d9937a0ad
commit 5e47daa944
3 changed files with 12 additions and 0 deletions

View file

@ -202,6 +202,8 @@ static int get_tag(int *tag)
MATCH(tag, buf, "length", tag_length);
MATCH(tag, buf, "Lm", tag_virt_length_min);
MATCH(tag, buf, "Ls", tag_virt_length_sec);
MATCH(tag, buf, "Pm", tag_virt_playtime_min);
MATCH(tag, buf, "Ps", tag_virt_playtime_sec);
MATCH(tag, buf, "title", tag_title);
MATCH(tag, buf, "filename", tag_filename);
MATCH(tag, buf, "tracknum", tag_tracknumber);