1
0
Fork 0
forked from len0rd/rockbox

"Next/Previous jpeg from within the JPEG viewer" addition by Alexander Spyridakis, modified a bit by me

Also tries to use the plugin buffer instead of the audio buffer on the platforms with more than 130kb plugin buffer size (thus not stopping the music playback). If the free buffer from the plugin buffer is not enough, asks for stopping playback. Needs a little more work, but seems stable as it is.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8728 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Hristo Kovachev 2006-02-18 20:51:34 +00:00
parent 3ba5a0b24a
commit cc6f37b8d8
5 changed files with 342 additions and 86 deletions

View file

@ -23,7 +23,7 @@ struct dbglobals {
int currententryindex;
};
struct entry {
struct dbentry {
int loadedfiledata,
loadedsongdata,
loadedrundbdata,
@ -50,7 +50,7 @@ struct entry {
short samplerate;
};
extern struct entry *currententry;
extern struct dbentry *currententry;
extern struct dbglobals dbglobal;
int database_init(void);