From 1515ff852224c822a6d3db8c458eab2c9037704f Mon Sep 17 00:00:00 2001 From: Stepan Moskovchenko Date: Mon, 15 Oct 2007 05:11:37 +0000 Subject: MIDI: At long last, though quick and dirty, pitch bend depth! Or, I think it works. Tested on two files. Let me know if anyone discovers any problems with this. This commit also includes Nils's synth loop optimization patch. I hope committing it does not cause problems. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15112 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/midi/midiutil.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps/plugins/midi/midiutil.h') diff --git a/apps/plugins/midi/midiutil.h b/apps/plugins/midi/midiutil.h index a94c257df0..911774440e 100644 --- a/apps/plugins/midi/midiutil.h +++ b/apps/plugins/midi/midiutil.h @@ -63,7 +63,8 @@ #define MIDI_PITCHW 224 /* MIDI Controllers */ -#define CTRL_VOLUME 7 +#define CTRL_PWDEPTH 6 +#define CTRL_VOLUME 7 #define CTRL_BALANCE 8 #define CTRL_PANNING 10 #define CHANNEL 1 @@ -159,6 +160,7 @@ extern int chVol[16]; /* Channel volume */ extern int chPan[16]; /* Channel panning */ extern int chPat[16]; /* Channel patch */ extern int chPW[16]; /* Channel pitch wheel, MSB only */ +extern int chPBDepth[16]; /* Channel pitch bend depth (Controller 6 */ extern struct GPatch * gusload(char *); extern struct GPatch * patchSet[128]; -- cgit v1.2.3