aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h')
-rwxr-xr-xplugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h b/plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h
index 37abf4c..5ca0c0a 100755
--- a/plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h
+++ b/plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h
@@ -16,7 +16,9 @@
#include <math.h>
enum {
- kNumParameters = 0
+ kParamA = 0,
+ kParamB = 1,
+ kNumParameters = 2
}; //
const int kNumPrograms = 0;
@@ -55,7 +57,11 @@ private:
double bynR[13];
long double noiseShapingL;
long double noiseShapingR;
-
+ uint32_t fpd;
+ //default stuff
+
+ float A;
+ float B;
};
#endif