forked from len0rd/rockbox
for upcoming release: no diagnostic screen unless underruns happened
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4339 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
454379a10b
commit
d93d20f6a4
1 changed files with 26 additions and 21 deletions
|
|
@ -759,7 +759,7 @@ int main(char* filename)
|
||||||
int file_size;
|
int file_size;
|
||||||
int fd; /* file descriptor handle */
|
int fd; /* file descriptor handle */
|
||||||
int read_now, got_now;
|
int read_now, got_now;
|
||||||
int button;
|
int button = 0;
|
||||||
int retval;
|
int retval;
|
||||||
|
|
||||||
// try to open the file
|
// try to open the file
|
||||||
|
|
@ -865,27 +865,32 @@ int main(char* filename)
|
||||||
return PLUGIN_USB_CONNECTED;
|
return PLUGIN_USB_CONNECTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
// display statistics
|
#ifndef DEBUG // for release compilations, only display the stats in case of error
|
||||||
rb->lcd_clear_display();
|
if (gStats.nAudioUnderruns || gStats.nVideoUnderruns)
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "%d Audio Underruns", gStats.nAudioUnderruns);
|
#endif
|
||||||
rb->lcd_puts(0, 0, gPrint);
|
{
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "%d Video Underruns", gStats.nVideoUnderruns);
|
// display statistics
|
||||||
rb->lcd_puts(0, 1, gPrint);
|
rb->lcd_clear_display();
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "%d MinAudio bytes", gStats.minAudioAvail);
|
rb->snprintf(gPrint, sizeof(gPrint), "%d Audio Underruns", gStats.nAudioUnderruns);
|
||||||
rb->lcd_puts(0, 2, gPrint);
|
rb->lcd_puts(0, 0, gPrint);
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "%d MinVideo bytes", gStats.minVideoAvail);
|
rb->snprintf(gPrint, sizeof(gPrint), "%d Video Underruns", gStats.nVideoUnderruns);
|
||||||
rb->lcd_puts(0, 3, gPrint);
|
rb->lcd_puts(0, 1, gPrint);
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "ReadChunk: %d", gBuf.nReadChunk);
|
rb->snprintf(gPrint, sizeof(gPrint), "%d MinAudio bytes", gStats.minAudioAvail);
|
||||||
rb->lcd_puts(0, 4, gPrint);
|
rb->lcd_puts(0, 2, gPrint);
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "SeekChunk: %d", gBuf.nSeekChunk);
|
rb->snprintf(gPrint, sizeof(gPrint), "%d MinVideo bytes", gStats.minVideoAvail);
|
||||||
rb->lcd_puts(0, 5, gPrint);
|
rb->lcd_puts(0, 3, gPrint);
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "LowWater: %d", gBuf.low_water);
|
rb->snprintf(gPrint, sizeof(gPrint), "ReadChunk: %d", gBuf.nReadChunk);
|
||||||
rb->lcd_puts(0, 6, gPrint);
|
rb->lcd_puts(0, 4, gPrint);
|
||||||
rb->snprintf(gPrint, sizeof(gPrint), "HighWater: %d", gBuf.high_water);
|
rb->snprintf(gPrint, sizeof(gPrint), "SeekChunk: %d", gBuf.nSeekChunk);
|
||||||
rb->lcd_puts(0, 7, gPrint);
|
rb->lcd_puts(0, 5, gPrint);
|
||||||
|
rb->snprintf(gPrint, sizeof(gPrint), "LowWater: %d", gBuf.low_water);
|
||||||
|
rb->lcd_puts(0, 6, gPrint);
|
||||||
|
rb->snprintf(gPrint, sizeof(gPrint), "HighWater: %d", gBuf.high_water);
|
||||||
|
rb->lcd_puts(0, 7, gPrint);
|
||||||
|
|
||||||
rb->lcd_update();
|
rb->lcd_update();
|
||||||
button = WaitForButton();
|
button = WaitForButton();
|
||||||
|
}
|
||||||
return (button == SYS_USB_CONNECTED) ? PLUGIN_USB_CONNECTED : PLUGIN_OK;
|
return (button == SYS_USB_CONNECTED) ? PLUGIN_USB_CONNECTED : PLUGIN_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue