[JayDelay]
- added param scaler
This commit is contained in:
+4
-1
@@ -8,10 +8,12 @@
|
||||
|
||||
#include "public.sdk/source/vst2.x/audioeffectx.h"
|
||||
#include <reverb/reverb.hpp>
|
||||
#include "param.hpp"
|
||||
|
||||
class Plugin : public AudioEffectX
|
||||
{
|
||||
const uint DELAY_MAX = 48000;
|
||||
static const uint DELAY_MAX = 48000;
|
||||
static const uint NUM_PARMS = 8;
|
||||
|
||||
public:
|
||||
Plugin(audioMasterCallback audioMaster);
|
||||
@@ -42,6 +44,7 @@ private:
|
||||
Reverb<float, 8> m_reverb_1;
|
||||
Reverb<float, 8> m_reverb_2;
|
||||
uint m_feedback_delay[2];
|
||||
Param *m_params[NUM_PARMS];
|
||||
};
|
||||
|
||||
#endif // __PLUGIN_H
|
||||
|
||||
Reference in New Issue
Block a user