aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h
diff options
context:
space:
mode:
authorChris Johnson <jinx6568@sover.net>2020-07-05 22:01:06 -0400
committerChris Johnson <jinx6568@sover.net>2020-07-05 22:01:06 -0400
commitc653c8b38fdc79f61ee191052901ac2012d476b4 (patch)
treeee0f0c7a35a07788d5242165f6274d701e7a92be /plugins/WinVST/NotJustAnotherDither/NotJustAnotherDither.h
parenta9a344ede4d4a6c3e7960af07389db5b031d0260 (diff)
downloadairwindows-lv2-port-c653c8b38fdc79f61ee191052901ac2012d476b4.tar.gz
airwindows-lv2-port-c653c8b38fdc79f61ee191052901ac2012d476b4.tar.bz2
airwindows-lv2-port-c653c8b38fdc79f61ee191052901ac2012d476b4.zip
DeRez Dither Updates (Beam, Dark, NJAD)
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