forked from len0rd/rockbox
MIDI: Allow seeking forward and backward using the left/right keys. Currently seeks in 5 second
increments, but this can be set to any amount. Also implemented a counter for playing time, which can pretty easily be used to determine the length of the file, in seconds, before playing it. The time isn't displayed anywhere right now, but all this can be useful if this thing is turned into a codec, or at least gets a nice UI. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15418 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
dc58c3d92e
commit
cd963d84ca
5 changed files with 110 additions and 8 deletions
|
@ -43,12 +43,8 @@ void readTextBlock(int file, char * buf)
|
|||
rb->lseek(file, -1, SEEK_CUR);
|
||||
}
|
||||
|
||||
/* Filename is the name of the config file */
|
||||
/* The MIDI file should have been loaded at this point */
|
||||
int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
|
||||
void resetControllers()
|
||||
{
|
||||
char patchUsed[128];
|
||||
char drumUsed[128];
|
||||
int a=0;
|
||||
for(a=0; a<MAX_VOICES; a++)
|
||||
{
|
||||
|
@ -71,6 +67,18 @@ int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
|
|||
chLastCtrlMSB[a]=0; /* Set to pitch bend depth */
|
||||
chLastCtrlLSB[a]=0; /* Set to pitch bend depth */
|
||||
}
|
||||
}
|
||||
|
||||
/* Filename is the name of the config file */
|
||||
/* The MIDI file should have been loaded at this point */
|
||||
int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
|
||||
{
|
||||
char patchUsed[128];
|
||||
char drumUsed[128];
|
||||
int a=0;
|
||||
|
||||
resetControllers();
|
||||
|
||||
for(a=0; a<128; a++)
|
||||
{
|
||||
patchSet[a]=NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue