summaryrefslogtreecommitdiff
path: root/apps/plugins/midi/midiutil.h
diff options
context:
space:
mode:
authorStepan Moskovchenko <stevenm@rockbox.org>2007-11-17 06:39:02 +0000
committerStepan Moskovchenko <stevenm@rockbox.org>2007-11-17 06:39:02 +0000
commit7f1fbe4af2d7e44e808418a969f5d2301b002c61 (patch)
tree7cbd226bb0afc1ccaca9410225f1a4691ce4eacc /apps/plugins/midi/midiutil.h
parent39429616c3ab5dd3919b6fb0bc3a24ef0127240b (diff)
downloadrockbox-7f1fbe4af2d7e44e808418a969f5d2301b002c61.tar.gz
rockbox-7f1fbe4af2d7e44e808418a969f5d2301b002c61.zip
MIDI: Increase percision of synthesizer by a factor of 4 - makes certain parts (guitar bends, mostly)
sound more natural. Also, completely rearrange the order of operations in the delta computation. Had to use long longs. Probably not a good idea for speed, but the order can be optimized more later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15652 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/midi/midiutil.h')
-rw-r--r--apps/plugins/midi/midiutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/midi/midiutil.h b/apps/plugins/midi/midiutil.h
index 18d493b23a..c3c5d91f47 100644
--- a/apps/plugins/midi/midiutil.h
+++ b/apps/plugins/midi/midiutil.h
@@ -17,7 +17,7 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#define FRACTSIZE 10 20#define FRACTSIZE 12
21 21
22#define BUF_SIZE 8192 /* 32 kB output buffers */ 22#define BUF_SIZE 8192 /* 32 kB output buffers */
23#define NBUF 2 23#define NBUF 2