Implement reverb CCs
This commit is contained in:
parent
7e45418d0f
commit
fae1d3c727
7 changed files with 299 additions and 6 deletions
30
reverb.h
Normal file
30
reverb.h
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
// -*-c++-*-
|
||||
|
||||
#ifndef _REVERB_H
|
||||
#define _REVERB_H
|
||||
|
||||
class Mustang;
|
||||
|
||||
class ReverbCC {
|
||||
|
||||
protected:
|
||||
|
||||
Mustang * amp;
|
||||
|
||||
public:
|
||||
|
||||
ReverbCC( Mustang * theAmp ) : amp(theAmp) {}
|
||||
|
||||
// Level
|
||||
int cc59( int value );
|
||||
// Decay
|
||||
int cc60( int value );
|
||||
// Dwell
|
||||
int cc61( int value );
|
||||
// Diffusion
|
||||
int cc62( int value );
|
||||
// Tone
|
||||
int cc63( int value );
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue