1
0
Fork 0
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:
Stepan Moskovchenko 2007-10-17 03:48:24 +00:00
parent 1cc852c346
commit d33645ba13
4 changed files with 28 additions and 99 deletions

View file

@ -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];