More sensible range for threshold, add post gain

This commit is contained in:
Aleks Rutins 2023-04-14 13:30:21 -04:00
parent a32ece06df
commit a4f63da955
3 changed files with 22 additions and 7 deletions

View file

@ -6,12 +6,13 @@ using namespace LV2;
namespace Dynamite {
enum PluginPort {
IN, OUT, DRIVE, THRESHOLD
IN, OUT, DRIVE, THRESHOLD, GAIN
};
class Drive : public Plugin<Drive> {
const float *drive;
const float *threshold;
const float *gain;
const float *input;
float *output;
public: