diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-12-05 13:09:51 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-12-05 13:09:51 +0000 |
| commit | b8ff5f8971616f4b25c02cc79d9644d7df70d5c2 (patch) | |
| tree | 967f11d5e095ea8b0fd7863237b55983bcd735b5 /apps/debug_menu.c | |
| parent | f4233e482dd34dd74bb9ce78f69f44cd22edbea6 (diff) | |
| download | rockbox-b8ff5f8971616f4b25c02cc79d9644d7df70d5c2.zip rockbox-b8ff5f8971616f4b25c02cc79d9644d7df70d5c2.tar.gz rockbox-b8ff5f8971616f4b25c02cc79d9644d7df70d5c2.tar.bz2 rockbox-b8ff5f8971616f4b25c02cc79d9644d7df70d5c2.tar.xz | |
Added MP3 buffer margin setting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2939 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index e55aa12..76c8662 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -174,10 +174,11 @@ bool dbg_mpeg_thread(void) percent = d.unplayed_space * 100 / d.mp3buflen; progressbar(0, 6*8, 112, 4, percent, Grow_Right); - percent = MPEG_LOW_WATER * 100 / d.mp3buflen; + percent = d.low_watermark_level * 100 / d.mp3buflen; progressbar(0, 6*8+4, 112, 4, percent, Grow_Right); - snprintf(buf, sizeof(buf), "lowest: %x", d.lowest_watermark_level); + snprintf(buf, sizeof(buf), "wm: %x - %x", + d.low_watermark_level, d.lowest_watermark_level); lcd_puts(0, 7, buf); lcd_update(); |