Morph-SynRJ

view smplInfo.h @ 0:22de913c2d84

morph-synrj intro
author "Cedric Pinson <cedric.pinson@alcove.fr> <mornifle@plopbyte.net>"
date Tue Nov 27 15:23:52 2007 +0100 (2007-11-27)
parents
children
line source
2 #ifndef __SMPL_INFO__
3 #define __SMPL_INFO__
5 #define NB_INST 7
6 #define AVGFILTER_NBELEMTS 16
8 #define SMPL_INC 0
9 #define SMPL_DEC 1
10 #define SMPL_LEVEL 2
12 enum SamplesDef
13 {
14 INST_BASS = 0,
15 INST_HHAT = 1,
16 INST_BDRUM = 2,
17 INST_SNARE = 3,
18 INST_SBDRUM = 4,
19 INST_NAP1 = 5,
20 INST_NAP2 = 6,
21 INST_BIGBD = 7,
22 INST_GROOVE = 8
23 };
26 typedef struct
27 {
28 bool playing;
29 float volume;
30 } SamplesData;
32 #endif