forked from len0rd/rockbox
MIDI: Optimize the new pitch bending code for a small speedup.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15160 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
1cc852c346
commit
d33645ba13
4 changed files with 28 additions and 99 deletions
|
@ -25,7 +25,10 @@ int chVol[16] IBSS_ATTR; /* Channel volume */
|
|||
int chPan[16] IBSS_ATTR; /* Channel panning */
|
||||
int chPat[16] IBSS_ATTR; /* Channel patch */
|
||||
int chPW[16] IBSS_ATTR; /* Channel pitch wheel, MSB only */
|
||||
int chPBDepth[16] IBSS_ATTR; /* Channel pitch wheel, MSB only */
|
||||
int chPBDepth[16] IBSS_ATTR; /* Channel pitch bend depth */
|
||||
int chPBNoteOffset[16] IBSS_ATTR; /* Pre-computed whole semitone offset */
|
||||
int chPBFractBend[16] IBSS_ATTR; /* Fractional bend applied to delta */
|
||||
|
||||
|
||||
struct GPatch * gusload(char *);
|
||||
struct GPatch * patchSet[128];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue