From 7402762fc021fa380368c5f6fb694d745bcdbe59 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Fri, 5 Jul 2002 07:20:47 +0000 Subject: Now uses the vbr flag git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1340 a1c6a512-1295-4272-9138-f99709370657 --- apps/wps.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/wps.c b/apps/wps.c index 5228726..f4872eb 100644 --- a/apps/wps.c +++ b/apps/wps.c @@ -95,7 +95,7 @@ static void draw_screen(struct mp3entry* id3) lcd_puts(0, l++, id3->album?id3->album:""); lcd_puts(0, l++, id3->artist?id3->artist:""); - if(id3->bitrate == VARIABLE_BIT_RATE) + if(id3->vbr) snprintf(buffer, sizeof(buffer), "Variable Bit Rate"); else snprintf(buffer, sizeof(buffer), "%d kbits", id3->bitrate); @@ -123,6 +123,7 @@ int wps_show(void) struct mp3entry* id3 = mpeg_current_track(); unsigned int lastlength=0, lastsize=0, lastrate=0; int lastartist=0, lastalbum=0, lasttitle=0; + bool lastvbr = false; while ( 1 ) { int i; @@ -131,6 +132,7 @@ int wps_show(void) if ( ( id3->length != lastlength ) || ( id3->filesize != lastsize ) || ( id3->bitrate != lastrate ) || + ( id3->vbr != lastvbr ) || ( (id3->artist?id3->artist[0]:0) != lastartist ) || ( (id3->album?id3->album[0]:0) != lastalbum ) || ( (id3->title?id3->title[0]:0) != lasttitle ) ) -- cgit v1.1