[JayDelay]

- added variable diffusor size, feedback delays and feedback gain
This commit is contained in:
2025-11-11 18:11:57 +01:00
parent a57e44f65f
commit b49404ec2c
3 changed files with 62 additions and 42 deletions
+4 -1
View File
@@ -11,7 +11,9 @@
class Plugin : public AudioEffectX
{
public:
const uint DELAY_MAX = 48000;
public:
Plugin(audioMasterCallback audioMaster);
~Plugin();
@@ -39,6 +41,7 @@ protected:
private:
Reverb<float, 8> m_reverb_1;
Reverb<float, 8> m_reverb_2;
uint m_feedback_delay[2];
};
#endif // __PLUGIN_H