From c73082c5ea40919fcf2b52f0c5f430a62956fe47 Mon Sep 17 00:00:00 2001 From: airwindows Date: Mon, 28 Feb 2022 03:09:38 -0500 Subject: [PATCH] up to ButterComp2 --- .../BitGlitter/source/BitGlitterProc.cpp | 20 +++---- .../BlockParty/source/BlockPartyProc.cpp | 20 +++---- .../Channel6/source/Channel6Proc.cpp | 20 +++---- .../source/CompresaturatorProc.cpp | 8 +-- plugins/MacSignedVST/Holt/source/HoltProc.cpp | 20 +++---- plugins/MacSignedVST/Loud/source/LoudProc.cpp | 20 +++---- plugins/MacSignedVST/MV/source/MVProc.cpp | 20 +++---- plugins/MacSignedVST/Pop/source/PopProc.cpp | 20 +++---- .../PurestSquish/source/PurestSquishProc.cpp | 20 +++---- .../MacSignedVST/Spiral/source/SpiralProc.cpp | 20 +++---- .../Spiral2/source/Spiral2Proc.cpp | 20 +++---- .../MacSignedVST/UnBox/source/UnBoxProc.cpp | 20 +++---- .../christopherjohnson.pbxuser | 30 +++++------ .../christopherjohnson.perspectivev3 | 31 ++++++----- plugins/MacVST/BassKit/source/BassKitProc.cpp | 4 +- .../christopherjohnson.pbxuser | 10 ++-- .../christopherjohnson.perspectivev3 | 11 ++-- .../Baxandall.xcodeproj/project.pbxproj | 4 +- .../Beam.xcodeproj/christopherjohnson.pbxuser | 36 ++++++------- .../christopherjohnson.perspectivev3 | 29 +++++----- plugins/MacVST/Beam/source/BeamProc.cpp | 16 +++--- .../christopherjohnson.pbxuser | 54 ++++++++++--------- .../christopherjohnson.perspectivev3 | 21 ++++---- .../christopherjohnson.pbxuser | 28 ++++++---- .../christopherjohnson.perspectivev3 | 22 ++++---- .../christopherjohnson.pbxuser | 16 +++--- .../christopherjohnson.perspectivev3 | 20 +++---- .../christopherjohnson.pbxuser | 8 +-- .../christopherjohnson.perspectivev3 | 10 ++-- .../BiquadOneHalf.xcodeproj/project.pbxproj | 4 +- .../christopherjohnson.pbxuser | 18 +++---- .../christopherjohnson.perspectivev3 | 21 ++++---- .../christopherjohnson.pbxuser | 30 +++++------ .../christopherjohnson.perspectivev3 | 23 ++++---- .../christopherjohnson.pbxuser | 36 ++++++------- .../christopherjohnson.perspectivev3 | 38 +++++++------ .../BitGlitter/source/BitGlitterProc.cpp | 20 +++---- .../christopherjohnson.pbxuser | 52 +++++++++--------- .../christopherjohnson.perspectivev3 | 22 ++++---- .../Bite.xcodeproj/christopherjohnson.pbxuser | 12 ++--- .../christopherjohnson.perspectivev3 | 14 ++--- .../christopherjohnson.pbxuser | 18 +++---- .../christopherjohnson.perspectivev3 | 22 ++++---- .../BlockParty/source/BlockPartyProc.cpp | 20 +++---- .../christopherjohnson.pbxuser | 8 +-- .../christopherjohnson.perspectivev3 | 17 +++--- .../BrassRider.xcodeproj/project.pbxproj | 4 +- .../christopherjohnson.pbxuser | 8 +-- .../christopherjohnson.perspectivev3 | 17 +++--- .../BrightAmbience.xcodeproj/project.pbxproj | 4 +- .../christopherjohnson.pbxuser | 30 +++++------ .../christopherjohnson.perspectivev3 | 21 ++++---- .../christopherjohnson.pbxuser | 8 +-- .../christopherjohnson.perspectivev3 | 20 +++---- .../christopherjohnson.pbxuser | 40 +++----------- .../christopherjohnson.perspectivev3 | 32 ++++------- plugins/MacVST/BuildATPDF/source/BuildATPDF.h | 3 +- .../BuildATPDF/source/BuildATPDFProc.cpp | 8 +-- .../christopherjohnson.pbxuser | 30 +++++------ .../christopherjohnson.perspectivev3 | 23 ++++---- .../christopherjohnson.pbxuser | 30 +++++------ .../christopherjohnson.perspectivev3 | 23 ++++---- .../christopherjohnson.pbxuser | 28 +++++----- .../christopherjohnson.perspectivev3 | 26 ++++----- .../MacVST/Channel6/source/Channel6Proc.cpp | 20 +++---- plugins/MacVST/Holt/source/HoltProc.cpp | 20 +++---- plugins/MacVST/Loud/source/LoudProc.cpp | 20 +++---- plugins/MacVST/MV/source/MVProc.cpp | 20 +++---- plugins/MacVST/Pop/source/PopProc.cpp | 20 +++---- .../PurestSquish/source/PurestSquishProc.cpp | 20 +++---- plugins/MacVST/Spiral/source/SpiralProc.cpp | 20 +++---- plugins/MacVST/Spiral2/source/Spiral2Proc.cpp | 20 +++---- plugins/MacVST/UnBox/source/UnBoxProc.cpp | 20 +++---- 73 files changed, 730 insertions(+), 758 deletions(-) diff --git a/plugins/MacSignedVST/BitGlitter/source/BitGlitterProc.cpp b/plugins/MacSignedVST/BitGlitter/source/BitGlitterProc.cpp index 8178e1cd7..792c78c67 100755 --- a/plugins/MacSignedVST/BitGlitter/source/BitGlitterProc.cpp +++ b/plugins/MacSignedVST/BitGlitter/source/BitGlitterProc.cpp @@ -210,11 +210,11 @@ void BitGlitter::processReplacing(float **inputs, float **outputs, VstInt32 samp //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -428,12 +428,12 @@ void BitGlitter::processDoubleReplacing(double **inputs, double **outputs, VstIn inputSampleR = outputSampleR; //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/BlockParty/source/BlockPartyProc.cpp b/plugins/MacSignedVST/BlockParty/source/BlockPartyProc.cpp index 42d2924fe..da0bb1398 100755 --- a/plugins/MacSignedVST/BlockParty/source/BlockPartyProc.cpp +++ b/plugins/MacSignedVST/BlockParty/source/BlockPartyProc.cpp @@ -517,11 +517,11 @@ void BlockParty::processReplacing(float **inputs, float **outputs, VstInt32 samp //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -1043,12 +1043,12 @@ void BlockParty::processDoubleReplacing(double **inputs, double **outputs, VstIn //iron bar clip comes after the dry/wet: alternate way to clean things up //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Channel6/source/Channel6Proc.cpp b/plugins/MacSignedVST/Channel6/source/Channel6Proc.cpp index c57faee2c..be57dbc44 100755 --- a/plugins/MacSignedVST/Channel6/source/Channel6Proc.cpp +++ b/plugins/MacSignedVST/Channel6/source/Channel6Proc.cpp @@ -90,11 +90,11 @@ void Channel6::processReplacing(float **inputs, float **outputs, VstInt32 sample //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -189,12 +189,12 @@ void Channel6::processDoubleReplacing(double **inputs, double **outputs, VstInt3 } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Compresaturator/source/CompresaturatorProc.cpp b/plugins/MacSignedVST/Compresaturator/source/CompresaturatorProc.cpp index 3a6f7ae1b..0e4a5d73c 100755 --- a/plugins/MacSignedVST/Compresaturator/source/CompresaturatorProc.cpp +++ b/plugins/MacSignedVST/Compresaturator/source/CompresaturatorProc.cpp @@ -171,11 +171,11 @@ void Compresaturator::processReplacing(float **inputs, float **outputs, VstInt32 //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Holt/source/HoltProc.cpp b/plugins/MacSignedVST/Holt/source/HoltProc.cpp index 413c1e159..d37f50ef4 100755 --- a/plugins/MacSignedVST/Holt/source/HoltProc.cpp +++ b/plugins/MacSignedVST/Holt/source/HoltProc.cpp @@ -127,11 +127,11 @@ void Holt::processReplacing(float **inputs, float **outputs, VstInt32 sampleFram //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -263,12 +263,12 @@ void Holt::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sa } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Loud/source/LoudProc.cpp b/plugins/MacSignedVST/Loud/source/LoudProc.cpp index 5669725ca..8637aba0c 100755 --- a/plugins/MacSignedVST/Loud/source/LoudProc.cpp +++ b/plugins/MacSignedVST/Loud/source/LoudProc.cpp @@ -107,11 +107,11 @@ void Loud::processReplacing(float **inputs, float **outputs, VstInt32 sampleFram //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -222,12 +222,12 @@ void Loud::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sa //number, we really don't want to meaninglessly multiply that by 1.0. //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/MV/source/MVProc.cpp b/plugins/MacSignedVST/MV/source/MVProc.cpp index 5a0b96333..bab3b0416 100755 --- a/plugins/MacSignedVST/MV/source/MVProc.cpp +++ b/plugins/MacSignedVST/MV/source/MVProc.cpp @@ -752,11 +752,11 @@ void MV::processReplacing(float **inputs, float **outputs, VstInt32 sampleFrames //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -1513,12 +1513,12 @@ void MV::processDoubleReplacing(double **inputs, double **outputs, VstInt32 samp //Dry/Wet control, defaults to the last slider //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Pop/source/PopProc.cpp b/plugins/MacSignedVST/Pop/source/PopProc.cpp index 8ddfd5490..2186f06fb 100755 --- a/plugins/MacSignedVST/Pop/source/PopProc.cpp +++ b/plugins/MacSignedVST/Pop/source/PopProc.cpp @@ -237,11 +237,11 @@ void Pop::processReplacing(float **inputs, float **outputs, VstInt32 sampleFrame //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -483,12 +483,12 @@ void Pop::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sam } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/PurestSquish/source/PurestSquishProc.cpp b/plugins/MacSignedVST/PurestSquish/source/PurestSquishProc.cpp index e763aa5ce..48ccc6d3a 100755 --- a/plugins/MacSignedVST/PurestSquish/source/PurestSquishProc.cpp +++ b/plugins/MacSignedVST/PurestSquish/source/PurestSquishProc.cpp @@ -460,11 +460,11 @@ void PurestSquish::processReplacing(float **inputs, float **outputs, VstInt32 sa //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -929,12 +929,12 @@ void PurestSquish::processDoubleReplacing(double **inputs, double **outputs, Vst } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Spiral/source/SpiralProc.cpp b/plugins/MacSignedVST/Spiral/source/SpiralProc.cpp index d06e261e1..2401ee59c 100755 --- a/plugins/MacSignedVST/Spiral/source/SpiralProc.cpp +++ b/plugins/MacSignedVST/Spiral/source/SpiralProc.cpp @@ -29,11 +29,11 @@ void Spiral::processReplacing(float **inputs, float **outputs, VstInt32 sampleFr //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -67,12 +67,12 @@ void Spiral::processDoubleReplacing(double **inputs, double **outputs, VstInt32 inputSampleR = sin(inputSampleR * fabs(inputSampleR)) / ((fabs(inputSampleR) == 0.0) ?1:fabs(inputSampleR)); //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/Spiral2/source/Spiral2Proc.cpp b/plugins/MacSignedVST/Spiral2/source/Spiral2Proc.cpp index d18f357dc..18e1583b8 100755 --- a/plugins/MacSignedVST/Spiral2/source/Spiral2Proc.cpp +++ b/plugins/MacSignedVST/Spiral2/source/Spiral2Proc.cpp @@ -87,11 +87,11 @@ void Spiral2::processReplacing(float **inputs, float **outputs, VstInt32 sampleF //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -184,12 +184,12 @@ void Spiral2::processDoubleReplacing(double **inputs, double **outputs, VstInt32 flip = !flip; //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacSignedVST/UnBox/source/UnBoxProc.cpp b/plugins/MacSignedVST/UnBox/source/UnBoxProc.cpp index b50db896e..cbeae0d5e 100755 --- a/plugins/MacSignedVST/UnBox/source/UnBoxProc.cpp +++ b/plugins/MacSignedVST/UnBox/source/UnBoxProc.cpp @@ -187,11 +187,11 @@ void UnBox::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -383,12 +383,12 @@ void UnBox::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s if (output != 1.0) {inputSampleL *= output; inputSampleR *= output;} //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.pbxuser index 71471a756..679fd1685 100755 --- a/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 569718226; - PBXWorkspaceStateSaveDate = 569718226; + PBXPerProjectTemplateStateSaveDate = 667727581; + PBXWorkspaceStateSaveDate = 667727581; }; perUserProjectItems = { - 8B79342421F535E6006E9731 /* PBXTextBookmark */ = 8B79342421F535E6006E9731 /* PBXTextBookmark */; - 8BC3BC31217D257A0043A8B7 /* PBXTextBookmark */ = 8BC3BC31217D257A0043A8B7 /* PBXTextBookmark */; + 8B1A927227CCB6E000649D11 /* PBXTextBookmark */ = 8B1A927227CCB6E000649D11 /* PBXTextBookmark */; + 8B1A927627CCB6FB00649D11 /* PBXTextBookmark */ = 8B1A927627CCB6FB00649D11 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -78,17 +78,17 @@ }; 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {838, 19864}}"; + sepNavIntBoundsRect = "{{0, 0}, {1074, 27522}}"; sepNavSelRange = "{10616, 0}"; - sepNavVisRange = "{10459, 280}"; + sepNavVisRange = "{10613, 126}"; sepNavWindowFrame = "{{15, 42}, {895, 831}}"; }; }; 24D8286F09A914000093AEF8 /* BassKitProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {901, 5759}}"; - sepNavSelRange = "{3023, 0}"; - sepNavVisRange = "{16984, 1948}"; + sepNavIntBoundsRect = "{{0, 0}, {1155, 6984}}"; + sepNavSelRange = "{10107, 0}"; + sepNavVisRange = "{9050, 1997}"; sepNavWindowFrame = "{{41, 39}, {895, 831}}"; }; }; @@ -106,25 +106,25 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B79342421F535E6006E9731 /* PBXTextBookmark */ = { + 8B1A927227CCB6E000649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; name = "audioeffectx.cpp: 307"; rLen = 0; rLoc = 10616; rType = 0; - vrLen = 280; - vrLoc = 10459; + vrLen = 126; + vrLoc = 10613; }; - 8BC3BC31217D257A0043A8B7 /* PBXTextBookmark */ = { + 8B1A927627CCB6FB00649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; name = "audioeffectx.cpp: 307"; rLen = 0; rLoc = 10616; rType = 0; - vrLen = 280; - vrLoc = 10459; + vrLen = 80; + vrLoc = 10613; }; 8D01CCC60486CAD60068D4B7 /* BassKit */ = { activeExec = 0; diff --git a/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.perspectivev3 index 4925ffa03..3aa5ddb10 100755 --- a/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BassKit/BassKit.xcodeproj/christopherjohnson.perspectivev3 @@ -256,8 +256,6 @@ Layout - BecomeActive - ContentConfiguration PBXBottomSmartGroupGIDs @@ -351,10 +349,10 @@ _historyCapacity 0 bookmark - 8B79342421F535E6006E9731 + 8B1A927627CCB6FB00649D11 history - 8BC3BC31217D257A0043A8B7 + 8B1A927227CCB6E000649D11 SplitCount @@ -368,18 +366,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 102}} + {{0, 0}, {603, 86}} RubberWindowFrame 103 354 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 102pt + 86pt Proportion - 339pt + 355pt Tabs @@ -393,9 +391,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 312}} - RubberWindowFrame - 103 354 810 487 0 0 1440 878 + {{10, 27}, {603, 328}} Module XCDetailModule @@ -449,7 +445,9 @@ GeometryConfiguration Frame - {{10, 27}, {603, 282}} + {{10, 27}, {603, 328}} + RubberWindowFrame + 103 354 810 487 0 0 1440 878 Module PBXBuildResultsModule @@ -477,11 +475,11 @@ TableOfContents - 8B79342521F535E6006E9731 + 8B1A927727CCB6FB00649D11 1CA23ED40692098700951B8B - 8B79342621F535E6006E9731 + 8B1A927827CCB6FB00649D11 8B0237581D42B1C400E1E8C8 - 8B79342721F535E6006E9731 + 8B1A927927CCB6FB00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +632,7 @@ StatusbarIsVisible TimeStamp - 569718246.60174298 + 667727611.83090794 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -651,7 +649,8 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/MacVST/BassKit/BassKit.xcodeproj + 8B1A927A27CCB6FB00649D11 + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BassKit/BassKit.xcodeproj WindowString 103 354 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BassKit/source/BassKitProc.cpp b/plugins/MacVST/BassKit/source/BassKitProc.cpp index b4621d946..c05d6e66f 100755 --- a/plugins/MacVST/BassKit/source/BassKitProc.cpp +++ b/plugins/MacVST/BassKit/source/BassKitProc.cpp @@ -57,7 +57,7 @@ void BassKit::processReplacing(float **inputs, float **outputs, VstInt32 sampleF {if (WasNegative){SubOctave = !SubOctave;} WasNegative = false;} else {WasNegative = true;} //set up polarities for sub-bass version - randy = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed + randy = (double(fpdL)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed invrandy = (1.0-randy); randy /= 2.0; //set up the noise @@ -239,7 +239,7 @@ void BassKit::processDoubleReplacing(double **inputs, double **outputs, VstInt32 {if (WasNegative){SubOctave = !SubOctave;} WasNegative = false;} else {WasNegative = true;} //set up polarities for sub-bass version - randy = (double(fpd)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed + randy = (double(fpdL)/UINT32_MAX)*fuzz; //0 to 1 the noise, may not be needed invrandy = (1.0-randy); randy /= 2.0; //set up the noise diff --git a/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.pbxuser index 7b0c36bd9..326466b08 100755 --- a/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.pbxuser @@ -49,8 +49,8 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 599409457; - PBXWorkspaceStateSaveDate = 599409457; + PBXPerProjectTemplateStateSaveDate = 667727697; + PBXWorkspaceStateSaveDate = 667727697; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -82,9 +82,9 @@ }; 24D8286F09A914000093AEF8 /* BaxandallProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {848, 3705}}"; - sepNavSelRange = "{6544, 0}"; - sepNavVisRange = "{0, 2302}"; + sepNavIntBoundsRect = "{{0, 0}, {921, 5058}}"; + sepNavSelRange = "{5668, 61}"; + sepNavVisRange = "{4898, 1343}"; sepNavWindowFrame = "{{165, 57}, {895, 821}}"; }; }; diff --git a/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.perspectivev3 index 015725529..24c9726f0 100755 --- a/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/Baxandall/Baxandall.xcodeproj/christopherjohnson.perspectivev3 @@ -469,11 +469,11 @@ TableOfContents - 8B1A37D623BA433E00D44C50 + 8B1A92D527CCB77800649D11 1CA23ED40692098700951B8B - 8B1A37D723BA433E00D44C50 + 8B1A92D627CCB77800649D11 8B0237581D42B1C400E1E8C8 - 8B1A37D823BA433E00D44C50 + 8B1A92D727CCB77800649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -626,7 +626,7 @@ StatusbarIsVisible TimeStamp - 599409470.30736601 + 667727736.42444003 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -643,7 +643,8 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/Plugins/MacVST/Baxandall/Baxandall.xcodeproj + 8B1A92D827CCB77800649D11 + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Baxandall/Baxandall.xcodeproj WindowString 145 318 810 487 0 0 1440 878 diff --git a/plugins/MacVST/Baxandall/Baxandall.xcodeproj/project.pbxproj b/plugins/MacVST/Baxandall/Baxandall.xcodeproj/project.pbxproj index 2d173e72d..6662c6dbd 100755 --- a/plugins/MacVST/Baxandall/Baxandall.xcodeproj/project.pbxproj +++ b/plugins/MacVST/Baxandall/Baxandall.xcodeproj/project.pbxproj @@ -1894,7 +1894,7 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { + 8D01CCC60486CAD60068D4B7 /* Baxandall */ = { isa = PBXNativeTarget; buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "Baxandall" */; buildPhases = ( @@ -1947,7 +1947,7 @@ ); projectRoot = ""; targets = ( - 8D01CCC60486CAD60068D4B7 /* AudioUnit */, + 8D01CCC60486CAD60068D4B7 /* Baxandall */, ); }; /* End PBXProject section */ diff --git a/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.pbxuser index ab6dc935b..3e9d94635 100755 --- a/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 615684221; - PBXWorkspaceStateSaveDate = 615684221; + PBXPerProjectTemplateStateSaveDate = 667727626; + PBXWorkspaceStateSaveDate = 667727626; }; perUserProjectItems = { - 8BB9A54324B296EC00CD76A8 /* PBXTextBookmark */ = 8BB9A54324B296EC00CD76A8 /* PBXTextBookmark */; - 8BB9A5B624B2988F00CD76A8 /* PBXTextBookmark */ = 8BB9A5B624B2988F00CD76A8 /* PBXTextBookmark */; + 8B1A92B427CCB70C00649D11 /* PBXTextBookmark */ = 8B1A92B427CCB70C00649D11 /* PBXTextBookmark */; + 8B1A92DB27CCB7A100649D11 /* PBXTextBookmark */ = 8B1A92DB27CCB7A100649D11 /* PBXTextBookmark */; 8BD150EB24956DE000B025B9 /* PBXTextBookmark */ = 8BD150EB24956DE000B025B9 /* PBXTextBookmark */; 8BD150EC24956DE000B025B9 /* PBXTextBookmark */ = 8BD150EC24956DE000B025B9 /* PBXTextBookmark */; }; @@ -88,10 +88,10 @@ }; 24D8286F09A914000093AEF8 /* BeamProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {691, 3471}}"; - sepNavSelRange = "{5619, 0}"; - sepNavVisRange = "{8812, 565}"; - sepNavWindowFrame = "{{543, 57}, {895, 821}}"; + sepNavIntBoundsRect = "{{0, 0}, {822, 4824}}"; + sepNavSelRange = "{5633, 0}"; + sepNavVisRange = "{1061, 676}"; + sepNavWindowFrame = "{{543, -51}, {895, 821}}"; }; }; 8B02375E1D42B1C400E1E8C8 /* Source Control */ = { @@ -108,25 +108,25 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8BB9A54324B296EC00CD76A8 /* PBXTextBookmark */ = { + 8B1A92B427CCB70C00649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BeamProc.cpp */; - name = "BeamProc.cpp: 164"; + name = "BeamProc.cpp: 165"; rLen = 0; - rLoc = 5619; + rLoc = 5633; rType = 0; - vrLen = 766; - vrLoc = 295; + vrLen = 515; + vrLoc = 8792; }; - 8BB9A5B624B2988F00CD76A8 /* PBXTextBookmark */ = { + 8B1A92DB27CCB7A100649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BeamProc.cpp */; - name = "BeamProc.cpp: 164"; + name = "BeamProc.cpp: 165"; rLen = 0; - rLoc = 5619; + rLoc = 5633; rType = 0; - vrLen = 565; - vrLoc = 8812; + vrLen = 676; + vrLoc = 1061; }; 8BD150EB24956DE000B025B9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; diff --git a/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.perspectivev3 index 69d60a1bd..4bce56f2f 100755 --- a/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/Beam/Beam.xcodeproj/christopherjohnson.perspectivev3 @@ -351,12 +351,12 @@ _historyCapacity 0 bookmark - 8BB9A5B624B2988F00CD76A8 + 8B1A92DB27CCB7A100649D11 history 8BD150EB24956DE000B025B9 8BD150EC24956DE000B025B9 - 8BB9A54324B296EC00CD76A8 + 8B1A92B427CCB70C00649D11 SplitCount @@ -370,18 +370,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 346}} + {{0, 0}, {603, 341}} RubberWindowFrame 584 368 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 346pt + 341pt Proportion - 95pt + 100pt Tabs @@ -395,9 +395,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 68}} - RubberWindowFrame - 584 368 810 487 0 0 1440 878 + {{10, 27}, {603, 73}} Module XCDetailModule @@ -451,7 +449,9 @@ GeometryConfiguration Frame - {{10, 27}, {603, 56}} + {{10, 27}, {603, 73}} + RubberWindowFrame + 584 368 810 487 0 0 1440 878 Module PBXBuildResultsModule @@ -479,11 +479,11 @@ TableOfContents - 8BB9A5B724B2988F00CD76A8 + 8B1A92DC27CCB7A100649D11 1CA23ED40692098700951B8B - 8BB9A5B824B2988F00CD76A8 + 8B1A92DD27CCB7A100649D11 8B0237581D42B1C400E1E8C8 - 8BB9A5B924B2988F00CD76A8 + 8B1A92DE27CCB7A100649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -636,7 +636,7 @@ StatusbarIsVisible TimeStamp - 615684239.58308196 + 667727777.15310204 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -653,7 +653,8 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/Dithers/MacVST/Beam/Beam.xcodeproj + 8B1A92DF27CCB7A100649D11 + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Beam/Beam.xcodeproj WindowString 584 368 810 487 0 0 1440 878 diff --git a/plugins/MacVST/Beam/source/BeamProc.cpp b/plugins/MacVST/Beam/source/BeamProc.cpp index 15eda5357..6a2ba2eb7 100755 --- a/plugins/MacVST/Beam/source/BeamProc.cpp +++ b/plugins/MacVST/Beam/source/BeamProc.cpp @@ -37,10 +37,10 @@ void Beam::processReplacing(float **inputs, float **outputs, VstInt32 sampleFram { double inputSampleL = *in1; double inputSampleR = *in2; - if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37; - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37; - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; + if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17; + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17; + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; inputSampleL *= scaleFactor; inputSampleR *= scaleFactor; @@ -166,10 +166,10 @@ void Beam::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sa { double inputSampleL = *in1; double inputSampleR = *in2; - if (fabs(inputSampleL)<1.18e-43) inputSampleL = fpd * 1.18e-43; - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - if (fabs(inputSampleR)<1.18e-43) inputSampleR = fpd * 1.18e-43; - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; + if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17; + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17; + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; inputSampleL *= scaleFactor; inputSampleR *= scaleFactor; diff --git a/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.pbxuser index e53e8abe7..87d74b9ae 100755 --- a/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.pbxuser @@ -49,13 +49,13 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 654547278; - PBXWorkspaceStateSaveDate = 654547278; + PBXPerProjectTemplateStateSaveDate = 667727918; + PBXWorkspaceStateSaveDate = 667727918; }; perUserProjectItems = { + 8B1A92F227CCB7AD00649D11 /* PBXTextBookmark */ = 8B1A92F227CCB7AD00649D11 /* PBXTextBookmark */; + 8B1A93FC27CCB9A800649D11 /* PBXTextBookmark */ = 8B1A93FC27CCB9A800649D11 /* PBXTextBookmark */; 8B54670527039968000066C9 /* PBXTextBookmark */ = 8B54670527039968000066C9 /* PBXTextBookmark */; - 8B54670627039968000066C9 /* PBXBookmark */ = 8B54670627039968000066C9 /* PBXBookmark */; - 8B54671C27039A64000066C9 /* PBXTextBookmark */ = 8B54671C27039A64000066C9 /* PBXTextBookmark */; 8BD3C15226322C5F00F96FC5 /* PBXTextBookmark */ = 8BD3C15226322C5F00F96FC5 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -72,9 +72,9 @@ }; 245463B80991757100464AD3 /* Biquad.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1110, 1044}}"; + sepNavIntBoundsRect = "{{0, 0}, {786, 1368}}"; sepNavSelRange = "{2668, 0}"; - sepNavVisRange = "{2495, 176}"; + sepNavVisRange = "{0, 0}"; sepNavWindowFrame = "{{20, 57}, {895, 821}}"; }; }; @@ -88,10 +88,10 @@ }; 24D8286F09A914000093AEF8 /* BiquadProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {966, 5778}}"; - sepNavSelRange = "{3700, 2139}"; - sepNavVisRange = "{5553, 1160}"; - sepNavWindowFrame = "{{9, 57}, {895, 821}}"; + sepNavIntBoundsRect = "{{0, 0}, {966, 5688}}"; + sepNavSelRange = "{11951, 481}"; + sepNavVisRange = "{11060, 1474}"; + sepNavWindowFrame = "{{314, 57}, {895, 821}}"; }; }; 8B02375E1D42B1C400E1E8C8 /* Source Control */ = { @@ -108,6 +108,26 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + 8B1A92F227CCB7AD00649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 245463B80991757100464AD3 /* Biquad.h */; + name = "Biquad.h: 62"; + rLen = 0; + rLoc = 2668; + rType = 0; + vrLen = 18; + vrLoc = 2664; + }; + 8B1A93FC27CCB9A800649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 245463B80991757100464AD3 /* Biquad.h */; + name = "Biquad.h: 62"; + rLen = 0; + rLoc = 2668; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; 8B54670527039968000066C9 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BiquadProc.cpp */; @@ -118,20 +138,6 @@ vrLen = 83; vrLoc = 6841; }; - 8B54670627039968000066C9 /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 245463B80991757100464AD3 /* Biquad.h */; - }; - 8B54671C27039A64000066C9 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 245463B80991757100464AD3 /* Biquad.h */; - name = "Biquad.h: 60"; - rLen = 0; - rLoc = 2668; - rType = 0; - vrLen = 176; - vrLoc = 2495; - }; 8BD3C15226322C5F00F96FC5 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 2407DEB6089929BA00EB68BF /* Biquad.cpp */; diff --git a/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.perspectivev3 index 18ef71089..872a052c5 100755 --- a/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/Biquad/Biquad.xcodeproj/christopherjohnson.perspectivev3 @@ -351,12 +351,12 @@ _historyCapacity 0 bookmark - 8B54671C27039A64000066C9 + 8B1A93FC27CCB9A800649D11 history 8BD3C15226322C5F00F96FC5 8B54670527039968000066C9 - 8B54670627039968000066C9 + 8B1A92F227CCB7AD00649D11 SplitCount @@ -370,18 +370,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 69}} + {{0, 0}, {603, 32}} RubberWindowFrame 9 379 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 69pt + 32pt Proportion - 372pt + 409pt Tabs @@ -395,7 +395,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 345}} + {{10, 27}, {603, 382}} RubberWindowFrame 9 379 810 487 0 0 1440 878 @@ -479,11 +479,11 @@ TableOfContents - 8B54670827039968000066C9 + 8B1A93FD27CCB9A800649D11 1CA23ED40692098700951B8B - 8B54670927039968000066C9 + 8B1A93FE27CCB9A800649D11 8B0237581D42B1C400E1E8C8 - 8B54670A27039968000066C9 + 8B1A93FF27CCB9A800649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -636,7 +636,7 @@ StatusbarIsVisible TimeStamp - 654547556.03987205 + 667728296.25488496 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -653,7 +653,6 @@ 5 WindowOrderList - 8B54671D27039A64000066C9 /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Biquad/Biquad.xcodeproj WindowString diff --git a/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.pbxuser index 3cd6ca567..ec4957ef9 100755 --- a/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 640821493; - PBXWorkspaceStateSaveDate = 640821493; + PBXPerProjectTemplateStateSaveDate = 667727796; + PBXWorkspaceStateSaveDate = 667727796; }; perUserProjectItems = { + 8B1A931527CCB7CA00649D11 /* PBXTextBookmark */ = 8B1A931527CCB7CA00649D11 /* PBXTextBookmark */; 8BD3C1212632291200F96FC5 /* PBXTextBookmark */ = 8BD3C1212632291200F96FC5 /* PBXTextBookmark */; - 8BD3C1222632291200F96FC5 /* PBXBookmark */ = 8BD3C1222632291200F96FC5 /* PBXBookmark */; 8BD3C1232632291200F96FC5 /* PBXTextBookmark */ = 8BD3C1232632291200F96FC5 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -71,9 +71,9 @@ }; 245463B80991757100464AD3 /* Biquad2.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1110, 1332}}"; + sepNavIntBoundsRect = "{{0, 0}, {894, 1530}}"; sepNavSelRange = "{2453, 0}"; - sepNavVisRange = "{2426, 180}"; + sepNavVisRange = "{2431, 170}"; sepNavWindowFrame = "{{20, 57}, {895, 821}}"; }; }; @@ -87,9 +87,9 @@ }; 24D8286F09A914000093AEF8 /* Biquad2Proc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1362, 7884}}"; + sepNavIntBoundsRect = "{{0, 0}, {1362, 7776}}"; sepNavSelRange = "{16635, 0}"; - sepNavVisRange = "{3761, 1321}"; + sepNavVisRange = "{16044, 1132}"; sepNavWindowFrame = "{{71, 94}, {1197, 758}}"; }; }; @@ -107,6 +107,16 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + 8B1A931527CCB7CA00649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 245463B80991757100464AD3 /* Biquad2.h */; + name = "Biquad2.h: 59"; + rLen = 0; + rLoc = 2453; + rType = 0; + vrLen = 170; + vrLoc = 2431; + }; 8BD3C1212632291200F96FC5 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 2407DEB6089929BA00EB68BF /* Biquad2.cpp */; @@ -117,10 +127,6 @@ vrLen = 214; vrLoc = 4474; }; - 8BD3C1222632291200F96FC5 /* PBXBookmark */ = { - isa = PBXBookmark; - fRef = 245463B80991757100464AD3 /* Biquad2.h */; - }; 8BD3C1232632291200F96FC5 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 245463B80991757100464AD3 /* Biquad2.h */; diff --git a/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.perspectivev3 index 06603aad2..27e821eab 100755 --- a/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/Biquad2/Biquad2.xcodeproj/christopherjohnson.perspectivev3 @@ -351,11 +351,11 @@ _historyCapacity 0 bookmark - 8BD3C1232632291200F96FC5 + 8B1A931527CCB7CA00649D11 history 8BD3C1212632291200F96FC5 - 8BD3C1222632291200F96FC5 + 8BD3C1232632291200F96FC5 SplitCount @@ -369,18 +369,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 69}} + {{0, 0}, {603, 51}} RubberWindowFrame 1 379 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 69pt + 51pt Proportion - 372pt + 390pt Tabs @@ -394,7 +394,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 345}} + {{10, 27}, {603, 363}} RubberWindowFrame 1 379 810 487 0 0 1440 878 @@ -478,11 +478,11 @@ TableOfContents - 8BD3C1242632291200F96FC5 + 8B1A931627CCB7CA00649D11 1CA23ED40692098700951B8B - 8BD3C1252632291200F96FC5 + 8B1A931727CCB7CA00649D11 8B0237581D42B1C400E1E8C8 - 8BD3C1262632291200F96FC5 + 8B1A931827CCB7CA00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -635,7 +635,7 @@ StatusbarIsVisible TimeStamp - 640821522.39281797 + 667727818.88234997 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -652,7 +652,7 @@ 5 WindowOrderList - 8BD3C1272632291200F96FC5 + 8B1A931927CCB7CA00649D11 /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Biquad2/Biquad2.xcodeproj WindowString diff --git a/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.pbxuser index b590aecfe..d59927bfb 100755 --- a/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.pbxuser @@ -49,11 +49,11 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 641249293; - PBXWorkspaceStateSaveDate = 641249293; + PBXPerProjectTemplateStateSaveDate = 667727823; + PBXWorkspaceStateSaveDate = 667727823; }; perUserProjectItems = { - 8BE5B0492638B01200B8F5BF /* PBXTextBookmark */ = 8BE5B0492638B01200B8F5BF /* PBXTextBookmark */; + 8B1A933627CCB7D500649D11 /* PBXTextBookmark */ = 8B1A933627CCB7D500649D11 /* PBXTextBookmark */; 8BE5B04A2638B01200B8F5BF /* PBXTextBookmark */ = 8BE5B04A2638B01200B8F5BF /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -86,9 +86,9 @@ }; 24D8286F09A914000093AEF8 /* BiquadDoubleProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {966, 5346}}"; + sepNavIntBoundsRect = "{{0, 0}, {966, 5400}}"; sepNavSelRange = "{11195, 0}"; - sepNavVisRange = "{2057, 243}"; + sepNavVisRange = "{2150, 150}"; sepNavWindowFrame = "{{136, 47}, {895, 831}}"; }; }; @@ -106,15 +106,15 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8BE5B0492638B01200B8F5BF /* PBXTextBookmark */ = { + 8B1A933627CCB7D500649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BiquadDoubleProc.cpp */; name = "BiquadDoubleProc.cpp: 273"; rLen = 0; rLoc = 11195; rType = 0; - vrLen = 243; - vrLoc = 2057; + vrLen = 150; + vrLoc = 2150; }; 8BE5B04A2638B01200B8F5BF /* PBXTextBookmark */ = { isa = PBXTextBookmark; diff --git a/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.perspectivev3 index 74429c724..0f9db5729 100755 --- a/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BiquadDouble/BiquadDouble.xcodeproj/christopherjohnson.perspectivev3 @@ -351,10 +351,10 @@ _historyCapacity 0 bookmark - 8BE5B04A2638B01200B8F5BF + 8B1A933627CCB7D500649D11 history - 8BE5B0492638B01200B8F5BF + 8BE5B04A2638B01200B8F5BF SplitCount @@ -368,18 +368,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 132}} + {{0, 0}, {603, 117}} RubberWindowFrame 34 365 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 132pt + 117pt Proportion - 309pt + 324pt Tabs @@ -393,7 +393,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 282}} + {{10, 27}, {603, 297}} RubberWindowFrame 34 365 810 487 0 0 1440 878 @@ -477,11 +477,11 @@ TableOfContents - 8BE5B04B2638B01200B8F5BF + 8B1A933727CCB7D500649D11 1CA23ED40692098700951B8B - 8BE5B04C2638B01200B8F5BF + 8B1A933827CCB7D500649D11 8B0237581D42B1C400E1E8C8 - 8BE5B04D2638B01200B8F5BF + 8B1A933927CCB7D500649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +634,7 @@ StatusbarIsVisible TimeStamp - 641249298.19319701 + 667727829.48259401 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode diff --git a/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.pbxuser index f98c41f8e..8b40e1e53 100755 --- a/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.pbxuser @@ -2,7 +2,7 @@ { 089C1669FE841209C02AAC07 /* Project object */ = { activeBuildConfigurationName = Release; - activeTarget = 8D01CCC60486CAD60068D4B7 /* BiquadOneHalf */; + activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */; codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */; perUserDictionary = { PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { @@ -49,8 +49,8 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 598582270; - PBXWorkspaceStateSaveDate = 598582270; + PBXPerProjectTemplateStateSaveDate = 667727834; + PBXWorkspaceStateSaveDate = 667727834; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -102,7 +102,7 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8D01CCC60486CAD60068D4B7 /* BiquadOneHalf */ = { + 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { activeExec = 0; }; } diff --git a/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.perspectivev3 index 528d10b55..c71153a82 100755 --- a/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/christopherjohnson.perspectivev3 @@ -469,11 +469,11 @@ TableOfContents - 8BE447DB23ADA89900A26556 + 8B1A935627CCB7E000649D11 1CA23ED40692098700951B8B - 8BE447DC23ADA89900A26556 + 8B1A935727CCB7E000649D11 8B0237581D42B1C400E1E8C8 - 8BE447DD23ADA89900A26556 + 8B1A935827CCB7E000649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -626,7 +626,7 @@ StatusbarIsVisible TimeStamp - 598583449.856655 + 667727840.69844699 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -643,7 +643,7 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/BiquadOneHalf/BiquadOneHalf.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj WindowString 34 365 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj b/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj index 09589ca4e..d55089d3f 100755 --- a/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj +++ b/plugins/MacVST/BiquadOneHalf/BiquadOneHalf.xcodeproj/project.pbxproj @@ -1894,7 +1894,7 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 8D01CCC60486CAD60068D4B7 /* BiquadOneHalf */ = { + 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { isa = PBXNativeTarget; buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "BiquadOneHalf" */; buildPhases = ( @@ -1947,7 +1947,7 @@ ); projectRoot = ""; targets = ( - 8D01CCC60486CAD60068D4B7 /* BiquadOneHalf */, + 8D01CCC60486CAD60068D4B7 /* AudioUnit */, ); }; /* End PBXProject section */ diff --git a/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.pbxuser index e060b721f..42e0daa6b 100644 --- a/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.pbxuser @@ -49,11 +49,11 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 655674996; - PBXWorkspaceStateSaveDate = 655674996; + PBXPerProjectTemplateStateSaveDate = 667727845; + PBXWorkspaceStateSaveDate = 667727845; }; perUserProjectItems = { - 8BA34B8A2714D2E30091244E /* PBXTextBookmark */ = 8BA34B8A2714D2E30091244E /* PBXTextBookmark */; + 8B1A937527CCB7EA00649D11 /* PBXTextBookmark */ = 8B1A937527CCB7EA00649D11 /* PBXTextBookmark */; 8BA34B8B2714D2E30091244E /* PBXTextBookmark */ = 8BA34B8B2714D2E30091244E /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -86,9 +86,9 @@ }; 24D8286F09A914000093AEF8 /* BiquadPlusProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {687, 5220}}"; + sepNavIntBoundsRect = "{{0, 0}, {687, 5130}}"; sepNavSelRange = "{10052, 0}"; - sepNavVisRange = "{9933, 220}"; + sepNavVisRange = "{9960, 198}"; sepNavWindowFrame = "{{652, 42}, {1274, 836}}"; }; }; @@ -106,15 +106,15 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8BA34B8A2714D2E30091244E /* PBXTextBookmark */ = { + 8B1A937527CCB7EA00649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BiquadPlusProc.cpp */; - name = "BiquadPlusProc.cpp: 249"; + name = "BiquadPlusProc.cpp: 250"; rLen = 0; rLoc = 10052; rType = 0; - vrLen = 220; - vrLoc = 9933; + vrLen = 198; + vrLoc = 9960; }; 8BA34B8B2714D2E30091244E /* PBXTextBookmark */ = { isa = PBXTextBookmark; diff --git a/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.perspectivev3 index 9ec11acfd..e7832f00c 100644 --- a/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj/christopherjohnson.perspectivev3 @@ -351,10 +351,10 @@ _historyCapacity 0 bookmark - 8BA34B8B2714D2E30091244E + 8B1A937527CCB7EA00649D11 history - 8BA34B8A2714D2E30091244E + 8BA34B8B2714D2E30091244E SplitCount @@ -368,18 +368,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 117}} + {{0, 0}, {603, 102}} RubberWindowFrame 622 297 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 117pt + 102pt Proportion - 324pt + 339pt Tabs @@ -393,7 +393,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 297}} + {{10, 27}, {603, 312}} RubberWindowFrame 622 297 810 487 0 0 1440 878 @@ -477,11 +477,11 @@ TableOfContents - 8BA34B8C2714D2E30091244E + 8B1A937627CCB7EA00649D11 1CA23ED40692098700951B8B - 8BA34B8D2714D2E30091244E + 8B1A937727CCB7EA00649D11 8B0237581D42B1C400E1E8C8 - 8BA34B8E2714D2E30091244E + 8B1A937827CCB7EA00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +634,7 @@ StatusbarIsVisible TimeStamp - 655676131.365255 + 667727850.62715602 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -651,7 +651,6 @@ 5 WindowOrderList - 8BA34B8F2714D2E30091244E /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BiquadPlus/BiquadPlus.xcodeproj WindowString diff --git a/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.pbxuser index b8dee019d..42e36f465 100755 --- a/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 623467213; - PBXWorkspaceStateSaveDate = 623467213; + PBXPerProjectTemplateStateSaveDate = 667727854; + PBXWorkspaceStateSaveDate = 667727854; }; perUserProjectItems = { + 8B1A939527CCB7F500649D11 /* PBXTextBookmark */ = 8B1A939527CCB7F500649D11 /* PBXTextBookmark */; 8BF86ECE2529557F00B3F089 /* PBXTextBookmark */ = 8BF86ECE2529557F00B3F089 /* PBXTextBookmark */; - 8BF86F2125295C6E00B3F089 /* PBXTextBookmark */ = 8BF86F2125295C6E00B3F089 /* PBXTextBookmark */; 8BF86F2225295C6E00B3F089 /* PBXTextBookmark */ = 8BF86F2225295C6E00B3F089 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -87,9 +87,9 @@ }; 24D8286F09A914000093AEF8 /* BiquadTripleProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {554, 4576}}"; + sepNavIntBoundsRect = "{{0, 0}, {660, 5994}}"; sepNavSelRange = "{11147, 0}"; - sepNavVisRange = "{2335, 70}"; + sepNavVisRange = "{0, 0}"; sepNavWindowFrame = "{{31, 42}, {895, 831}}"; }; }; @@ -107,6 +107,16 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + 8B1A939527CCB7F500649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 24D8286F09A914000093AEF8 /* BiquadTripleProc.cpp */; + name = "BiquadTripleProc.cpp: 273"; + rLen = 0; + rLoc = 11147; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; 8BF86ECE2529557F00B3F089 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 245463B80991757100464AD3 /* BiquadTriple.h */; @@ -117,16 +127,6 @@ vrLen = 220; vrLoc = 0; }; - 8BF86F2125295C6E00B3F089 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24D8286F09A914000093AEF8 /* BiquadTripleProc.cpp */; - name = "BiquadTripleProc.cpp: 247"; - rLen = 0; - rLoc = 11147; - rType = 0; - vrLen = 70; - vrLoc = 2335; - }; 8BF86F2225295C6E00B3F089 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BiquadTripleProc.cpp */; diff --git a/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.perspectivev3 index 5e5963414..9430ceb10 100755 --- a/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj/christopherjohnson.perspectivev3 @@ -351,11 +351,11 @@ _historyCapacity 0 bookmark - 8BF86F2225295C6E00B3F089 + 8B1A939527CCB7F500649D11 history 8BF86ECE2529557F00B3F089 - 8BF86F2125295C6E00B3F089 + 8BF86F2225295C6E00B3F089 SplitCount @@ -369,18 +369,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 51}} + {{0, 0}, {603, 32}} RubberWindowFrame 34 365 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 51pt + 32pt Proportion - 390pt + 409pt Tabs @@ -394,7 +394,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 363}} + {{10, 27}, {603, 382}} RubberWindowFrame 34 365 810 487 0 0 1440 878 @@ -478,11 +478,11 @@ TableOfContents - 8BF86F2325295C6E00B3F089 + 8B1A939627CCB7F500649D11 1CA23ED40692098700951B8B - 8BF86F2425295C6E00B3F089 + 8B1A939727CCB7F500649D11 8B0237581D42B1C400E1E8C8 - 8BF86F2525295C6E00B3F089 + 8B1A939827CCB7F500649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -635,7 +635,7 @@ StatusbarIsVisible TimeStamp - 623467630.10932696 + 667727861.51547897 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -652,8 +652,7 @@ 5 WindowOrderList - 8BF86F2625295C6E00B3F089 - /Users/christopherjohnson/Desktop/BiquadTriple/BiquadTriple.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BiquadTriple/BiquadTriple.xcodeproj WindowString 34 365 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.pbxuser index f0addac13..5ab9c7ec3 100755 --- a/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.pbxuser @@ -51,12 +51,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 631580863; - PBXWorkspaceStateSaveDate = 631580863; + PBXPerProjectTemplateStateSaveDate = 667727878; + PBXWorkspaceStateSaveDate = 667727878; }; perUserProjectItems = { - 8B2E7A7D25A528C800485B86 /* PBXTextBookmark */ = 8B2E7A7D25A528C800485B86 /* PBXTextBookmark */; - 8BB5178D2221FD04000C92BC /* PBXTextBookmark */ = 8BB5178D2221FD04000C92BC /* PBXTextBookmark */; + 8B1A93D327CCB80800649D11 /* PBXTextBookmark */ = 8B1A93D327CCB80800649D11 /* PBXTextBookmark */; + 8B1A940227CCB9B200649D11 /* PBXTextBookmark */ = 8B1A940227CCB9B200649D11 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -72,9 +72,9 @@ }; 245463B80991757100464AD3 /* BitGlitter.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {866, 1144}}"; + sepNavIntBoundsRect = "{{0, 0}, {1110, 1566}}"; sepNavSelRange = "{0, 0}"; - sepNavVisRange = "{679, 2348}"; + sepNavVisRange = "{679, 2074}"; sepNavWindowFrame = "{{20, 47}, {895, 831}}"; }; }; @@ -88,10 +88,10 @@ }; 24D8286F09A914000093AEF8 /* BitGlitterProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {849, 8046}}"; - sepNavSelRange = "{6527, 88}"; - sepNavVisRange = "{6453, 218}"; - sepNavWindowFrame = "{{600, -1}, {895, 831}}"; + sepNavIntBoundsRect = "{{0, 0}, {705, 8136}}"; + sepNavSelRange = "{13928, 0}"; + sepNavVisRange = "{6422, 116}"; + sepNavWindowFrame = "{{545, 4}, {895, 831}}"; }; }; 8B02375E1D42B1C400E1E8C8 /* Source Control */ = { @@ -108,24 +108,24 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B2E7A7D25A528C800485B86 /* PBXTextBookmark */ = { + 8B1A93D327CCB80800649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BitGlitterProc.cpp */; name = "BitGlitterProc.cpp: 211"; rLen = 88; rLoc = 6527; rType = 0; - vrLen = 218; - vrLoc = 6453; + vrLen = 242; + vrLoc = 6489; }; - 8BB5178D2221FD04000C92BC /* PBXTextBookmark */ = { + 8B1A940227CCB9B200649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BitGlitterProc.cpp */; - name = "BitGlitterProc.cpp: 212"; - rLen = 88; - rLoc = 6527; + name = "BitGlitterProc.cpp: 448"; + rLen = 0; + rLoc = 13928; rType = 0; - vrLen = 446; + vrLen = 116; vrLoc = 6422; }; 8D01CCC60486CAD60068D4B7 /* BitGlitter */ = { diff --git a/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.perspectivev3 index 746f4f67b..f187bb364 100755 --- a/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj/christopherjohnson.perspectivev3 @@ -256,8 +256,6 @@ Layout - BecomeActive - ContentConfiguration PBXBottomSmartGroupGIDs @@ -300,7 +298,7 @@ PBXSmartGroupTreeModuleOutlineStateSelectionKey - 5 + 7 4 0 @@ -323,7 +321,7 @@ 185 RubberWindowFrame - 299 272 810 487 0 0 1440 878 + 536 287 810 487 0 0 1440 878 Module PBXSmartGroupTreeModule @@ -351,10 +349,10 @@ _historyCapacity 0 bookmark - 8B2E7A7D25A528C800485B86 + 8B1A940227CCB9B200649D11 history - 8BB5178D2221FD04000C92BC + 8B1A93D327CCB80800649D11 SplitCount @@ -368,18 +366,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 117}} + {{0, 0}, {603, 102}} RubberWindowFrame - 299 272 810 487 0 0 1440 878 + 536 287 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 117pt + 102pt Proportion - 324pt + 339pt Tabs @@ -393,9 +391,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 297}} - RubberWindowFrame - 299 272 810 487 0 0 1440 878 + {{10, 27}, {603, 312}} Module XCDetailModule @@ -449,7 +445,9 @@ GeometryConfiguration Frame - {{10, 27}, {603, 282}} + {{10, 27}, {603, 312}} + RubberWindowFrame + 536 287 810 487 0 0 1440 878 Module PBXBuildResultsModule @@ -477,11 +475,11 @@ TableOfContents - 8B2E7A7E25A528C800485B86 + 8B1A93F627CCB95900649D11 1CA23ED40692098700951B8B - 8B2E7A7F25A528C800485B86 + 8B1A93F727CCB95900649D11 8B0237581D42B1C400E1E8C8 - 8B2E7A8025A528C800485B86 + 8B1A93F827CCB95900649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -654,7 +652,7 @@ StatusbarIsVisible TimeStamp - 631580872.53004098 + 667728306.45997202 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -671,10 +669,10 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/Plugins/MacVST/BitGlitter/BitGlitter.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BitGlitter/BitGlitter.xcodeproj WindowString - 299 272 810 487 0 0 1440 878 + 536 287 810 487 0 0 1440 878 WindowToolsV3 diff --git a/plugins/MacVST/BitGlitter/source/BitGlitterProc.cpp b/plugins/MacVST/BitGlitter/source/BitGlitterProc.cpp index 8178e1cd7..792c78c67 100755 --- a/plugins/MacVST/BitGlitter/source/BitGlitterProc.cpp +++ b/plugins/MacVST/BitGlitter/source/BitGlitterProc.cpp @@ -210,11 +210,11 @@ void BitGlitter::processReplacing(float **inputs, float **outputs, VstInt32 samp //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -428,12 +428,12 @@ void BitGlitter::processDoubleReplacing(double **inputs, double **outputs, VstIn inputSampleR = outputSampleR; //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.pbxuser index 5810e3f3f..f02406a31 100755 --- a/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.pbxuser @@ -49,14 +49,14 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 569802073; - PBXWorkspaceStateSaveDate = 569802073; + PBXPerProjectTemplateStateSaveDate = 667728322; + PBXWorkspaceStateSaveDate = 667728322; }; perUserProjectItems = { + 8B1A941327CCB9C000649D11 /* PBXTextBookmark */ = 8B1A941327CCB9C000649D11 /* PBXTextBookmark */; + 8B1A943127CCB9C400649D11 /* PBXTextBookmark */ = 8B1A943127CCB9C400649D11 /* PBXTextBookmark */; 8BEF858D21F67E1D00FEF113 /* PBXTextBookmark */ = 8BEF858D21F67E1D00FEF113 /* PBXTextBookmark */; 8BEF858E21F67E1D00FEF113 /* PBXTextBookmark */ = 8BEF858E21F67E1D00FEF113 /* PBXTextBookmark */; - 8BEF858F21F67E1D00FEF113 /* PBXTextBookmark */ = 8BEF858F21F67E1D00FEF113 /* PBXTextBookmark */; - 8BEF859021F67E1D00FEF113 /* PBXTextBookmark */ = 8BEF859021F67E1D00FEF113 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -88,9 +88,9 @@ }; 24D8286F09A914000093AEF8 /* BitShiftGainProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {712, 1586}}"; + sepNavIntBoundsRect = "{{0, 0}, {912, 2286}}"; sepNavSelRange = "{476, 8}"; - sepNavVisRange = "{1474, 1209}"; + sepNavVisRange = "{1474, 725}"; sepNavWindowFrame = "{{476, 47}, {895, 831}}"; }; }; @@ -108,6 +108,26 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + 8B1A941327CCB9C000649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 24D8286F09A914000093AEF8 /* BitShiftGainProc.cpp */; + name = "BitShiftGainProc.cpp: 17"; + rLen = 8; + rLoc = 476; + rType = 0; + vrLen = 725; + vrLoc = 1474; + }; + 8B1A943127CCB9C400649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 24D8286F09A914000093AEF8 /* BitShiftGainProc.cpp */; + name = "BitShiftGainProc.cpp: 17"; + rLen = 8; + rLoc = 476; + rType = 0; + vrLen = 725; + vrLoc = 1474; + }; 8BEF858D21F67E1D00FEF113 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; @@ -128,26 +148,6 @@ vrLen = 1669; vrLoc = 2730; }; - 8BEF858F21F67E1D00FEF113 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24D8286F09A914000093AEF8 /* BitShiftGainProc.cpp */; - name = "BitShiftGainProc.cpp: 56"; - rLen = 0; - rLoc = 1754; - rType = 0; - vrLen = 1226; - vrLoc = 1820; - }; - 8BEF859021F67E1D00FEF113 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24D8286F09A914000093AEF8 /* BitShiftGainProc.cpp */; - name = "BitShiftGainProc.cpp: 17"; - rLen = 8; - rLoc = 476; - rType = 0; - vrLen = 1209; - vrLoc = 1474; - }; 8D01CCC60486CAD60068D4B7 /* BitShiftGain */ = { activeExec = 0; }; diff --git a/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.perspectivev3 index b5d4e9353..8cc9b042f 100755 --- a/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj/christopherjohnson.perspectivev3 @@ -351,12 +351,12 @@ _historyCapacity 0 bookmark - 8BEF859021F67E1D00FEF113 + 8B1A943127CCB9C400649D11 history 8BEF858D21F67E1D00FEF113 8BEF858E21F67E1D00FEF113 - 8BEF858F21F67E1D00FEF113 + 8B1A941327CCB9C000649D11 SplitCount @@ -370,18 +370,18 @@ GeometryConfiguration Frame - {{0, 0}, {628, 592}} + {{0, 0}, {628, 584}} RubberWindowFrame 493 108 835 770 0 0 1440 878 Module PBXNavigatorGroup Proportion - 592pt + 584pt Proportion - 132pt + 140pt Tabs @@ -395,7 +395,7 @@ GeometryConfiguration Frame - {{10, 27}, {628, 105}} + {{10, 27}, {628, 113}} RubberWindowFrame 493 108 835 770 0 0 1440 878 @@ -479,11 +479,11 @@ TableOfContents - 8BEF859121F67E1D00FEF113 + 8B1A943227CCB9C400649D11 1CA23ED40692098700951B8B - 8BEF859221F67E1D00FEF113 + 8B1A943327CCB9C400649D11 8B0237581D42B1C400E1E8C8 - 8BEF859321F67E1D00FEF113 + 8B1A943427CCB9C400649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -636,7 +636,7 @@ StatusbarIsVisible TimeStamp - 569802269.42069495 + 667728324.935431 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -653,7 +653,7 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/MacVST/BitShiftGain/BitShiftGain.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BitShiftGain/BitShiftGain.xcodeproj WindowString 493 108 835 770 0 0 1440 878 diff --git a/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.pbxuser index 70f9ad37b..16cf94878 100755 --- a/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 569718265; - PBXWorkspaceStateSaveDate = 569718265; + PBXPerProjectTemplateStateSaveDate = 667727867; + PBXWorkspaceStateSaveDate = 667727867; }; perUserProjectItems = { + 8B1A93B527CCB80100649D11 /* PBXTextBookmark */ = 8B1A93B527CCB80100649D11 /* PBXTextBookmark */; 8B79344521F53610006E9731 /* PBXTextBookmark */ = 8B79344521F53610006E9731 /* PBXTextBookmark */; - 8B9D778D1F7FA5B8007AB60F /* PBXTextBookmark */ = 8B9D778D1F7FA5B8007AB60F /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -78,7 +78,7 @@ }; 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 19864}}"; + sepNavIntBoundsRect = "{{0, 0}, {957, 27504}}"; sepNavSelRange = "{10616, 0}"; sepNavVisRange = "{0, 0}"; sepNavWindowFrame = "{{15, 42}, {895, 831}}"; @@ -106,7 +106,7 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B79344521F53610006E9731 /* PBXTextBookmark */ = { + 8B1A93B527CCB80100649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; name = "audioeffectx.cpp: 307"; @@ -116,7 +116,7 @@ vrLen = 0; vrLoc = 0; }; - 8B9D778D1F7FA5B8007AB60F /* PBXTextBookmark */ = { + 8B79344521F53610006E9731 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; name = "audioeffectx.cpp: 307"; diff --git a/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.perspectivev3 index 58ed0f10b..2f70a1b65 100755 --- a/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/Bite/Bite.xcodeproj/christopherjohnson.perspectivev3 @@ -351,10 +351,10 @@ _historyCapacity 0 bookmark - 8B79344521F53610006E9731 + 8B1A93B527CCB80100649D11 history - 8B9D778D1F7FA5B8007AB60F + 8B79344521F53610006E9731 SplitCount @@ -477,11 +477,11 @@ TableOfContents - 8B79344621F53610006E9731 + 8B1A93B627CCB80100649D11 1CA23ED40692098700951B8B - 8B79344721F53610006E9731 + 8B1A93B727CCB80100649D11 8B0237581D42B1C400E1E8C8 - 8B79344821F53610006E9731 + 8B1A93B827CCB80100649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +634,7 @@ StatusbarIsVisible TimeStamp - 569718288.19823003 + 667727873.21137702 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -651,7 +651,7 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/MacVST/Bite/Bite.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/Bite/Bite.xcodeproj WindowString 411 225 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.pbxuser index b84b84685..b60c28b85 100755 --- a/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.pbxuser @@ -49,11 +49,11 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 572653014; - PBXWorkspaceStateSaveDate = 572653014; + PBXPerProjectTemplateStateSaveDate = 667728330; + PBXWorkspaceStateSaveDate = 667728330; }; perUserProjectItems = { - 8B9F829A2219DFEB0082B2CC /* PBXTextBookmark */ = 8B9F829A2219DFEB0082B2CC /* PBXTextBookmark */; + 8B1A945127CCB9D100649D11 /* PBXTextBookmark */ = 8B1A945127CCB9D100649D11 /* PBXTextBookmark */; 8BB517C12221FDDE000C92BC /* PBXTextBookmark */ = 8BB517C12221FDDE000C92BC /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -86,9 +86,9 @@ }; 24D8286F09A914000093AEF8 /* BlockPartyProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {586, 14833}}"; + sepNavIntBoundsRect = "{{0, 0}, {741, 19260}}"; sepNavSelRange = "{21548, 0}"; - sepNavVisRange = "{21397, 273}"; + sepNavVisRange = "{21460, 180}"; sepNavWindowFrame = "{{787, 47}, {895, 831}}"; }; }; @@ -106,15 +106,15 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B9F829A2219DFEB0082B2CC /* PBXTextBookmark */ = { + 8B1A945127CCB9D100649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BlockPartyProc.cpp */; - name = "BlockPartyProc.cpp: 632"; + name = "BlockPartyProc.cpp: 631"; rLen = 0; rLoc = 21548; rType = 0; - vrLen = 326; - vrLoc = 21395; + vrLen = 180; + vrLoc = 21460; }; 8BB517C12221FDDE000C92BC /* PBXTextBookmark */ = { isa = PBXTextBookmark; diff --git a/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.perspectivev3 index 7b2cbe630..c931a2003 100755 --- a/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BlockParty/BlockParty.xcodeproj/christopherjohnson.perspectivev3 @@ -351,10 +351,10 @@ _historyCapacity 0 bookmark - 8BB517C12221FDDE000C92BC + 8B1A945127CCB9D100649D11 history - 8B9F829A2219DFEB0082B2CC + 8BB517C12221FDDE000C92BC SplitCount @@ -368,18 +368,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 102}} + {{0, 0}, {603, 86}} RubberWindowFrame 630 337 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 102pt + 86pt Proportion - 339pt + 355pt Tabs @@ -393,7 +393,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 312}} + {{10, 27}, {603, 328}} RubberWindowFrame 630 337 810 487 0 0 1440 878 @@ -477,11 +477,11 @@ TableOfContents - 8BB517C22221FDDE000C92BC + 8B1A945227CCB9D100649D11 1CA23ED40692098700951B8B - 8BB517C32221FDDE000C92BC + 8B1A945327CCB9D100649D11 8B0237581D42B1C400E1E8C8 - 8BB517C42221FDDE000C92BC + 8B1A945427CCB9D100649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +634,7 @@ StatusbarIsVisible TimeStamp - 572653022.93815804 + 667728337.33368194 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -651,7 +651,7 @@ 5 WindowOrderList - /Users/christopherjohnson/Desktop/Plugins/MacVST/BlockParty/BlockParty.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BlockParty/BlockParty.xcodeproj WindowString 630 337 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BlockParty/source/BlockPartyProc.cpp b/plugins/MacVST/BlockParty/source/BlockPartyProc.cpp index 42d2924fe..da0bb1398 100755 --- a/plugins/MacVST/BlockParty/source/BlockPartyProc.cpp +++ b/plugins/MacVST/BlockParty/source/BlockPartyProc.cpp @@ -517,11 +517,11 @@ void BlockParty::processReplacing(float **inputs, float **outputs, VstInt32 samp //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -1043,12 +1043,12 @@ void BlockParty::processDoubleReplacing(double **inputs, double **outputs, VstIn //iron bar clip comes after the dry/wet: alternate way to clean things up //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.pbxuser index 058c94691..3177a738f 100755 --- a/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.pbxuser @@ -2,7 +2,7 @@ { 089C1669FE841209C02AAC07 /* Project object */ = { activeBuildConfigurationName = Release; - activeTarget = 8D01CCC60486CAD60068D4B7 /* BrassRider */; + activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */; codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */; perUserDictionary = { PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { @@ -49,8 +49,8 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 575135619; - PBXWorkspaceStateSaveDate = 575135619; + PBXPerProjectTemplateStateSaveDate = 667728342; + PBXWorkspaceStateSaveDate = 667728342; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -102,7 +102,7 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8D01CCC60486CAD60068D4B7 /* BrassRider */ = { + 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { activeExec = 0; }; } diff --git a/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.perspectivev3 index 69e9a7d42..6ae70902c 100755 --- a/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BrassRider/BrassRider.xcodeproj/christopherjohnson.perspectivev3 @@ -256,6 +256,8 @@ Layout + BecomeActive + ContentConfiguration PBXBottomSmartGroupGIDs @@ -384,6 +386,8 @@ Frame {{10, 27}, {603, 414}} + RubberWindowFrame + 34 365 810 487 0 0 1440 878 Module XCDetailModule @@ -438,8 +442,6 @@ Frame {{10, 27}, {603, 414}} - RubberWindowFrame - 34 365 810 487 0 0 1440 878 Module PBXBuildResultsModule @@ -467,11 +469,11 @@ TableOfContents - 8B6112452247E639001915CF + 8B1A947327CCB9DE00649D11 1CA23ED40692098700951B8B - 8B6112462247E639001915CF + 8B1A947427CCB9DE00649D11 8B0237581D42B1C400E1E8C8 - 8B6112472247E639001915CF + 8B1A947527CCB9DE00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -624,7 +626,7 @@ StatusbarIsVisible TimeStamp - 575137337.26672304 + 667728350.41321802 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -641,8 +643,7 @@ 5 WindowOrderList - 8B6112482247E639001915CF - /Users/christopherjohnson/Desktop/BrassRider/BrassRider.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BrassRider/BrassRider.xcodeproj WindowString 34 365 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BrassRider/BrassRider.xcodeproj/project.pbxproj b/plugins/MacVST/BrassRider/BrassRider.xcodeproj/project.pbxproj index 1229dffe4..72a778613 100755 --- a/plugins/MacVST/BrassRider/BrassRider.xcodeproj/project.pbxproj +++ b/plugins/MacVST/BrassRider/BrassRider.xcodeproj/project.pbxproj @@ -1894,7 +1894,7 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 8D01CCC60486CAD60068D4B7 /* BrassRider */ = { + 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { isa = PBXNativeTarget; buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "BrassRider" */; buildPhases = ( @@ -1947,7 +1947,7 @@ ); projectRoot = ""; targets = ( - 8D01CCC60486CAD60068D4B7 /* BrassRider */, + 8D01CCC60486CAD60068D4B7 /* AudioUnit */, ); }; /* End PBXProject section */ diff --git a/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.pbxuser index f12dc8b16..0edaf94fe 100755 --- a/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.pbxuser @@ -2,7 +2,7 @@ { 089C1669FE841209C02AAC07 /* Project object */ = { activeBuildConfigurationName = Release; - activeTarget = 8D01CCC60486CAD60068D4B7 /* BrightAmbience */; + activeTarget = 8D01CCC60486CAD60068D4B7 /* AudioUnit */; codeSenseManager = 8B02375F1D42B1C400E1E8C8 /* Code sense */; perUserDictionary = { PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { @@ -49,8 +49,8 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 613850253; - PBXWorkspaceStateSaveDate = 613850253; + PBXPerProjectTemplateStateSaveDate = 667728357; + PBXWorkspaceStateSaveDate = 667728357; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -102,7 +102,7 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8D01CCC60486CAD60068D4B7 /* BrightAmbience */ = { + 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { activeExec = 0; }; } diff --git a/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.perspectivev3 index b630efac5..ca26e1dae 100755 --- a/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/christopherjohnson.perspectivev3 @@ -256,6 +256,8 @@ Layout + BecomeActive + ContentConfiguration PBXBottomSmartGroupGIDs @@ -384,6 +386,8 @@ Frame {{10, 27}, {603, 414}} + RubberWindowFrame + 21 357 810 487 0 0 1440 878 Module XCDetailModule @@ -438,8 +442,6 @@ Frame {{10, 27}, {603, 414}} - RubberWindowFrame - 21 357 810 487 0 0 1440 878 Module PBXBuildResultsModule @@ -467,11 +469,11 @@ TableOfContents - 8BD151E62496A64A00B025B9 + 8B1A949227CCB9EE00649D11 1CA23ED40692098700951B8B - 8BD151E72496A64A00B025B9 + 8B1A949327CCB9EE00649D11 8B0237581D42B1C400E1E8C8 - 8BD151E82496A64A00B025B9 + 8B1A949427CCB9EE00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -624,7 +626,7 @@ StatusbarIsVisible TimeStamp - 613852746.52534699 + 667728366.91692197 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -641,8 +643,7 @@ 5 WindowOrderList - 8BD151E92496A64A00B025B9 - /Users/christopherjohnson/Desktop/BrightAmbience/BrightAmbience.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj WindowString 21 357 810 487 0 0 1440 878 diff --git a/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj b/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj index 7f0728c88..9891345e5 100755 --- a/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj +++ b/plugins/MacVST/BrightAmbience/BrightAmbience.xcodeproj/project.pbxproj @@ -1894,7 +1894,7 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 8D01CCC60486CAD60068D4B7 /* BrightAmbience */ = { + 8D01CCC60486CAD60068D4B7 /* AudioUnit */ = { isa = PBXNativeTarget; buildConfigurationList = 24BEAAED08919AE700E695F9 /* Build configuration list for PBXNativeTarget "BrightAmbience" */; buildPhases = ( @@ -1947,7 +1947,7 @@ ); projectRoot = ""; targets = ( - 8D01CCC60486CAD60068D4B7 /* BrightAmbience */, + 8D01CCC60486CAD60068D4B7 /* AudioUnit */, ); }; /* End PBXProject section */ diff --git a/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.pbxuser index 5e2df212b..e651d1991 100755 --- a/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 648165638; - PBXWorkspaceStateSaveDate = 648165638; + PBXPerProjectTemplateStateSaveDate = 667728371; + PBXWorkspaceStateSaveDate = 667728371; }; perUserProjectItems = { - 8B0CCC0E26A2395900B14EE7 /* PBXTextBookmark */ = 8B0CCC0E26A2395900B14EE7 /* PBXTextBookmark */; 8B0CCC0F26A2395900B14EE7 /* PBXTextBookmark */ = 8B0CCC0F26A2395900B14EE7 /* PBXTextBookmark */; + 8B1A94B127CCB9FA00649D11 /* PBXTextBookmark */ = 8B1A94B127CCB9FA00649D11 /* PBXTextBookmark */; 8B8519EE24E8AB4500B80DEC /* PBXTextBookmark */ = 8B8519EE24E8AB4500B80DEC /* PBXTextBookmark */; 8B8519EF24E8AB4500B80DEC /* PBXTextBookmark */ = 8B8519EF24E8AB4500B80DEC /* PBXTextBookmark */; }; @@ -88,9 +88,9 @@ }; 24D8286F09A914000093AEF8 /* BrightAmbience2Proc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {822, 2592}}"; + sepNavIntBoundsRect = "{{0, 0}, {849, 2592}}"; sepNavSelRange = "{4283, 0}"; - sepNavVisRange = "{4231, 203}"; + sepNavVisRange = "{4189, 211}"; sepNavWindowFrame = "{{31, 57}, {895, 821}}"; }; }; @@ -108,16 +108,6 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B0CCC0E26A2395900B14EE7 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24D8286F09A914000093AEF8 /* BrightAmbience2Proc.cpp */; - name = "BrightAmbience2Proc.cpp: 127"; - rLen = 0; - rLoc = 4283; - rType = 0; - vrLen = 203; - vrLoc = 4231; - }; 8B0CCC0F26A2395900B14EE7 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* BrightAmbience2Proc.cpp */; @@ -128,6 +118,16 @@ vrLen = 203; vrLoc = 4231; }; + 8B1A94B127CCB9FA00649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 24D8286F09A914000093AEF8 /* BrightAmbience2Proc.cpp */; + name = "BrightAmbience2Proc.cpp: 127"; + rLen = 0; + rLoc = 4283; + rType = 0; + vrLen = 211; + vrLoc = 4189; + }; 8B8519EE24E8AB4500B80DEC /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 245463B80991757100464AD3 /* BrightAmbience2.h */; diff --git a/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.perspectivev3 index 2486ac911..b7ef89fcf 100755 --- a/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj/christopherjohnson.perspectivev3 @@ -351,12 +351,12 @@ _historyCapacity 0 bookmark - 8B0CCC0F26A2395900B14EE7 + 8B1A94B127CCB9FA00649D11 history 8B8519EE24E8AB4500B80DEC 8B8519EF24E8AB4500B80DEC - 8B0CCC0E26A2395900B14EE7 + 8B0CCC0F26A2395900B14EE7 SplitCount @@ -370,18 +370,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 117}} + {{0, 0}, {603, 102}} RubberWindowFrame 558 346 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 117pt + 102pt Proportion - 324pt + 339pt Tabs @@ -395,7 +395,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 297}} + {{10, 27}, {603, 312}} RubberWindowFrame 558 346 810 487 0 0 1440 878 @@ -479,11 +479,11 @@ TableOfContents - 8B0CCC1026A2395900B14EE7 + 8B1A94B227CCB9FA00649D11 1CA23ED40692098700951B8B - 8B0CCC1126A2395900B14EE7 + 8B1A94B327CCB9FA00649D11 8B0237581D42B1C400E1E8C8 - 8B0CCC1226A2395900B14EE7 + 8B1A94B427CCB9FA00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -636,7 +636,7 @@ StatusbarIsVisible TimeStamp - 648165721.21806097 + 667728378.28608203 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -653,7 +653,6 @@ 5 WindowOrderList - 8B0CCC1326A2395900B14EE7 /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BrightAmbience2/BrightAmbience2.xcodeproj WindowString diff --git a/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.pbxuser index 5d7f2cf49..f5a26f7da 100644 --- a/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.pbxuser @@ -49,11 +49,11 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 649284650; - PBXWorkspaceStateSaveDate = 649284650; + PBXPerProjectTemplateStateSaveDate = 667728382; + PBXWorkspaceStateSaveDate = 667728382; }; perUserProjectItems = { - 8BE135F826B350EB00A345C1 /* PBXTextBookmark */ = 8BE135F826B350EB00A345C1 /* PBXTextBookmark */; + 8B1A94D127CCBA0600649D11 /* PBXTextBookmark */ = 8B1A94D127CCBA0600649D11 /* PBXTextBookmark */; 8BE135F926B350EB00A345C1 /* PBXTextBookmark */ = 8BE135F926B350EB00A345C1 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -106,7 +106,7 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8BE135F826B350EB00A345C1 /* PBXTextBookmark */ = { + 8B1A94D127CCBA0600649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 2407DEB6089929BA00EB68BF /* BrightAmbience3.cpp */; name = "BrightAmbience3.cpp: 25"; diff --git a/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.perspectivev3 index 88032cace..df7875950 100644 --- a/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BrightAmbience3/BrightAmbience3.xcodeproj/christopherjohnson.perspectivev3 @@ -351,10 +351,10 @@ _historyCapacity 0 bookmark - 8BE135F926B350EB00A345C1 + 8B1A94D127CCBA0600649D11 history - 8BE135F826B350EB00A345C1 + 8BE135F926B350EB00A345C1 SplitCount @@ -368,18 +368,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 117}} + {{0, 0}, {603, 102}} RubberWindowFrame 620 314 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 117pt + 102pt Proportion - 324pt + 339pt Tabs @@ -393,7 +393,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 297}} + {{10, 27}, {603, 312}} RubberWindowFrame 620 314 810 487 0 0 1440 878 @@ -477,11 +477,11 @@ TableOfContents - 8BE135FA26B350EB00A345C1 + 8B1A94D227CCBA0600649D11 1CA23ED40692098700951B8B - 8BE135FB26B350EB00A345C1 + 8B1A94D327CCBA0600649D11 8B0237581D42B1C400E1E8C8 - 8BE135FC26B350EB00A345C1 + 8B1A94D427CCBA0600649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +634,7 @@ StatusbarIsVisible TimeStamp - 649285867.68031096 + 667728390.02164602 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode diff --git a/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser index 2d27a0160..727d32f46 100755 --- a/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,8 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 660600422; - PBXWorkspaceStateSaveDate = 660600422; - }; - perUserProjectItems = { - 8B9E1DE5275FF65A00AF4668 /* PBXTextBookmark */ = 8B9E1DE5275FF65A00AF4668 /* PBXTextBookmark */; - 8B9E1E02275FF69A00AF4668 /* PBXTextBookmark */ = 8B9E1E02275FF69A00AF4668 /* PBXTextBookmark */; + PBXPerProjectTemplateStateSaveDate = 667728394; + PBXWorkspaceStateSaveDate = 667728394; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -70,9 +66,9 @@ }; 245463B80991757100464AD3 /* BuildATPDF.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1110, 1512}}"; - sepNavSelRange = "{2562, 0}"; - sepNavVisRange = "{1032, 1762}"; + sepNavIntBoundsRect = "{{0, 0}, {1110, 1530}}"; + sepNavSelRange = "{2813, 0}"; + sepNavVisRange = "{1032, 1793}"; sepNavWindowFrame = "{{20, 47}, {895, 831}}"; }; }; @@ -86,9 +82,9 @@ }; 24D8286F09A914000093AEF8 /* BuildATPDFProc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {554, 4428}}"; - sepNavSelRange = "{684, 0}"; - sepNavVisRange = "{0, 0}"; + sepNavIntBoundsRect = "{{0, 0}, {894, 3294}}"; + sepNavSelRange = "{4047, 0}"; + sepNavVisRange = "{3777, 1069}"; sepNavWindowFrame = "{{335, 42}, {895, 831}}"; }; }; @@ -106,26 +102,6 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B9E1DE5275FF65A00AF4668 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24D8286F09A914000093AEF8 /* BuildATPDFProc.cpp */; - name = "BuildATPDFProc.cpp: 30"; - rLen = 0; - rLoc = 684; - rType = 0; - vrLen = 0; - vrLoc = 0; - }; - 8B9E1E02275FF69A00AF4668 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24D8286F09A914000093AEF8 /* BuildATPDFProc.cpp */; - name = "BuildATPDFProc.cpp: 30"; - rLen = 0; - rLoc = 684; - rType = 0; - vrLen = 0; - vrLoc = 0; - }; 8D01CCC60486CAD60068D4B7 /* BuildATPDF */ = { activeExec = 0; }; diff --git a/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3 index 6c77e765f..8eec13cc6 100755 --- a/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj/christopherjohnson.perspectivev3 @@ -256,8 +256,6 @@ Layout - BecomeActive - ContentConfiguration PBXBottomSmartGroupGIDs @@ -300,7 +298,7 @@ PBXSmartGroupTreeModuleOutlineStateSelectionKey - 6 + 7 4 0 @@ -339,23 +337,13 @@ PBXProjectModuleGUID 8B0237581D42B1C400E1E8C8 PBXProjectModuleLabel - BuildATPDFProc.cpp + <No Editor> PBXSplitModuleInNavigatorKey Split0 PBXProjectModuleGUID 8B0237591D42B1C400E1E8C8 - PBXProjectModuleLabel - BuildATPDFProc.cpp - _historyCapacity - 0 - bookmark - 8B9E1E02275FF69A00AF4668 - history - - 8B9E1DE5275FF65A00AF4668 - SplitCount 1 @@ -394,8 +382,6 @@ Frame {{10, 27}, {603, 414}} - RubberWindowFrame - 630 390 810 487 0 0 1440 878 Module XCDetailModule @@ -449,7 +435,9 @@ GeometryConfiguration Frame - {{10, 27}, {603, 363}} + {{10, 27}, {603, 414}} + RubberWindowFrame + 630 390 810 487 0 0 1440 878 Module PBXBuildResultsModule @@ -477,11 +465,11 @@ TableOfContents - 8B9E1E03275FF69A00AF4668 + 8B1A950027CCBA7000649D11 1CA23ED40692098700951B8B - 8B9E1E04275FF69A00AF4668 + 8B1A950127CCBA7000649D11 8B0237581D42B1C400E1E8C8 - 8B9E1E05275FF69A00AF4668 + 8B1A950227CCBA7000649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +622,7 @@ StatusbarIsVisible TimeStamp - 660600474.74406695 + 667728496.88772094 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -651,7 +639,7 @@ 5 WindowOrderList - 8B9E1E06275FF69A00AF4668 + 8B1A950327CCBA7000649D11 /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BuildATPDF/BuildATPDF.xcodeproj WindowString diff --git a/plugins/MacVST/BuildATPDF/source/BuildATPDF.h b/plugins/MacVST/BuildATPDF/source/BuildATPDF.h index 4de6dc8c6..06b07b9dd 100755 --- a/plugins/MacVST/BuildATPDF/source/BuildATPDF.h +++ b/plugins/MacVST/BuildATPDF/source/BuildATPDF.h @@ -77,7 +77,8 @@ private: float I; float J; //parameters. Always 0-1, and we scale/alter them elsewhere. - + uint32_t fpdL; + uint32_t fpdR; }; #endif diff --git a/plugins/MacVST/BuildATPDF/source/BuildATPDFProc.cpp b/plugins/MacVST/BuildATPDF/source/BuildATPDFProc.cpp index 06948a378..277522f81 100755 --- a/plugins/MacVST/BuildATPDF/source/BuildATPDFProc.cpp +++ b/plugins/MacVST/BuildATPDF/source/BuildATPDFProc.cpp @@ -41,7 +41,7 @@ void BuildATPDF::processReplacing(float **inputs, float **outputs, VstInt32 samp bL[9] = bL[8]; bL[8] = bL[7]; bL[7] = bL[6]; bL[6] = bL[5]; bL[5] = bL[4]; bL[4] = bL[3]; bL[3] = bL[2]; bL[2] = bL[1]; - bL[1] = bL[0]; bL[0] = (double(fpd)/UINT32_MAX); + bL[1] = bL[0]; bL[0] = (double(fpdL)/UINT32_MAX); currentDither = (bL[0] * f[0]); currentDither += (bL[1] * f[1]); @@ -58,7 +58,7 @@ void BuildATPDF::processReplacing(float **inputs, float **outputs, VstInt32 samp bR[9] = bR[8]; bR[8] = bR[7]; bR[7] = bR[6]; bR[6] = bR[5]; bR[5] = bR[4]; bR[4] = bR[3]; bR[3] = bR[2]; bR[2] = bR[1]; - bR[1] = bR[0]; bR[0] = (double(fpd)/UINT32_MAX); + bR[1] = bR[0]; bR[0] = (double(fpdR)/UINT32_MAX); currentDither = (bR[0] * f[0]); currentDither += (bR[1] * f[1]); @@ -126,7 +126,7 @@ void BuildATPDF::processDoubleReplacing(double **inputs, double **outputs, VstIn bL[9] = bL[8]; bL[8] = bL[7]; bL[7] = bL[6]; bL[6] = bL[5]; bL[5] = bL[4]; bL[4] = bL[3]; bL[3] = bL[2]; bL[2] = bL[1]; - bL[1] = bL[0]; bL[0] = (double(fpd)/UINT32_MAX); + bL[1] = bL[0]; bL[0] = (double(fpdL)/UINT32_MAX); currentDither = (bL[0] * f[0]); currentDither += (bL[1] * f[1]); @@ -143,7 +143,7 @@ void BuildATPDF::processDoubleReplacing(double **inputs, double **outputs, VstIn bR[9] = bR[8]; bR[8] = bR[7]; bR[7] = bR[6]; bR[6] = bR[5]; bR[5] = bR[4]; bR[4] = bR[3]; bR[3] = bR[2]; bR[2] = bR[1]; - bR[1] = bR[0]; bR[0] = (double(fpd)/UINT32_MAX); + bR[1] = bR[0]; bR[0] = (double(fpdR)/UINT32_MAX); currentDither = (bR[0] * f[0]); currentDither += (bR[1] * f[1]); diff --git a/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.pbxuser index 56965b2df..7a4469f10 100755 --- a/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 569718632; - PBXWorkspaceStateSaveDate = 569718632; + PBXPerProjectTemplateStateSaveDate = 667728501; + PBXWorkspaceStateSaveDate = 667728501; }; perUserProjectItems = { + 8B1A951627CCBA7E00649D11 /* PBXTextBookmark */ = 8B1A951627CCBA7E00649D11 /* PBXTextBookmark */; 8B7934BC21F53792006E9731 /* PBXTextBookmark */ = 8B7934BC21F53792006E9731 /* PBXTextBookmark */; - 8BBD1973210550260015A233 /* PBXTextBookmark */ = 8BBD1973210550260015A233 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; userBuildSettings = { @@ -62,9 +62,9 @@ }; 2407DEB6089929BA00EB68BF /* BussColors4.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {747, 2392}}"; + sepNavIntBoundsRect = "{{0, 0}, {957, 3348}}"; sepNavSelRange = "{6740, 15}"; - sepNavVisRange = "{44, 191}"; + sepNavVisRange = "{178, 57}"; sepNavWindowFrame = "{{545, 42}, {895, 831}}"; }; }; @@ -106,6 +106,16 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + 8B1A951627CCBA7E00649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 2407DEB6089929BA00EB68BF /* BussColors4.cpp */; + name = "BussColors4.cpp: 162"; + rLen = 15; + rLoc = 6740; + rType = 0; + vrLen = 57; + vrLoc = 178; + }; 8B7934BC21F53792006E9731 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 2407DEB6089929BA00EB68BF /* BussColors4.cpp */; @@ -116,16 +126,6 @@ vrLen = 191; vrLoc = 44; }; - 8BBD1973210550260015A233 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 2407DEB6089929BA00EB68BF /* BussColors4.cpp */; - name = "BussColors4.cpp: 167"; - rLen = 15; - rLoc = 6740; - rType = 0; - vrLen = 192; - vrLoc = 44; - }; 8D01CCC60486CAD60068D4B7 /* BussColors4 */ = { activeExec = 0; }; diff --git a/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.perspectivev3 index 38ff207c5..7817d3120 100755 --- a/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/BussColors4/BussColors4.xcodeproj/christopherjohnson.perspectivev3 @@ -351,10 +351,10 @@ _historyCapacity 0 bookmark - 8B7934BC21F53792006E9731 + 8B1A951627CCBA7E00649D11 history - 8BBD1973210550260015A233 + 8B7934BC21F53792006E9731 SplitCount @@ -368,18 +368,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 117}} + {{0, 0}, {603, 102}} RubberWindowFrame 567 361 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 117pt + 102pt Proportion - 324pt + 339pt Tabs @@ -393,7 +393,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 297}} + {{10, 27}, {603, 312}} RubberWindowFrame 567 361 810 487 0 0 1440 878 @@ -477,11 +477,11 @@ TableOfContents - 8B7934AA21F5376C006E9731 + 8B1A951727CCBA7E00649D11 1CA23ED40692098700951B8B - 8B7934AB21F5376C006E9731 + 8B1A951827CCBA7E00649D11 8B0237581D42B1C400E1E8C8 - 8B7934AC21F5376C006E9731 + 8B1A951927CCBA7E00649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -634,7 +634,7 @@ StatusbarIsVisible TimeStamp - 569718674.56684196 + 667728509.99984097 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -651,8 +651,7 @@ 5 WindowOrderList - 8B7934BD21F53792006E9731 - /Users/christopherjohnson/Desktop/MacVST/BussColors4/BussColors4.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/BussColors4/BussColors4.xcodeproj WindowString 567 361 810 487 0 0 1440 878 diff --git a/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.pbxuser index 4e5159186..6d2360944 100755 --- a/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.pbxuser @@ -49,13 +49,13 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 569718696; - PBXWorkspaceStateSaveDate = 569718696; + PBXPerProjectTemplateStateSaveDate = 667728514; + PBXWorkspaceStateSaveDate = 667728514; }; perUserProjectItems = { + 8B1A953627CCBA8800649D11 /* PBXTextBookmark */ = 8B1A953627CCBA8800649D11 /* PBXTextBookmark */; 8B42FD78216053420092969A /* PBXTextBookmark */ = 8B42FD78216053420092969A /* PBXTextBookmark */; 8B42FDE121605A6A0092969A /* PBXTextBookmark */ = 8B42FDE121605A6A0092969A /* PBXTextBookmark */; - 8B42FDE321605A6A0092969A /* PBXTextBookmark */ = 8B42FDE321605A6A0092969A /* PBXTextBookmark */; 8B7934D121F537BA006E9731 /* PBXTextBookmark */ = 8B7934D121F537BA006E9731 /* PBXTextBookmark */; }; sourceControlManager = 8B02375E1D42B1C400E1E8C8 /* Source Control */; @@ -72,9 +72,9 @@ }; 245463B80991757100464AD3 /* ButterComp.h */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {554, 1079}}"; + sepNavIntBoundsRect = "{{0, 0}, {554, 1458}}"; sepNavSelRange = "{2665, 0}"; - sepNavVisRange = "{2626, 64}"; + sepNavVisRange = "{0, 0}"; sepNavWindowFrame = "{{545, 47}, {895, 831}}"; }; }; @@ -108,6 +108,16 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; + 8B1A953627CCBA8800649D11 /* PBXTextBookmark */ = { + isa = PBXTextBookmark; + fRef = 245463B80991757100464AD3 /* ButterComp.h */; + name = "ButterComp.h: 67"; + rLen = 0; + rLoc = 2665; + rType = 0; + vrLen = 0; + vrLoc = 0; + }; 8B42FD78216053420092969A /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24A2FFDB0F90D1DD003BB5A7 /* audioeffectx.cpp */; @@ -128,16 +138,6 @@ vrLen = 0; vrLoc = 12527; }; - 8B42FDE321605A6A0092969A /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 245463B80991757100464AD3 /* ButterComp.h */; - name = "ButterComp.h: 67"; - rLen = 0; - rLoc = 2665; - rType = 0; - vrLen = 65; - vrLoc = 2626; - }; 8B7934D121F537BA006E9731 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 245463B80991757100464AD3 /* ButterComp.h */; diff --git a/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.perspectivev3 index 5148f751d..209f2648a 100755 --- a/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/ButterComp/ButterComp.xcodeproj/christopherjohnson.perspectivev3 @@ -351,12 +351,12 @@ _historyCapacity 0 bookmark - 8B7934D121F537BA006E9731 + 8B1A953627CCBA8800649D11 history 8B42FD78216053420092969A 8B42FDE121605A6A0092969A - 8B42FDE321605A6A0092969A + 8B7934D121F537BA006E9731 SplitCount @@ -370,18 +370,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 51}} + {{0, 0}, {603, 32}} RubberWindowFrame 544 355 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 51pt + 32pt Proportion - 390pt + 409pt Tabs @@ -395,7 +395,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 363}} + {{10, 27}, {603, 382}} RubberWindowFrame 544 355 810 487 0 0 1440 878 @@ -479,11 +479,11 @@ TableOfContents - 8B7934D221F537BA006E9731 + 8B1A953727CCBA8800649D11 1CA23ED40692098700951B8B - 8B7934D321F537BA006E9731 + 8B1A953827CCBA8800649D11 8B0237581D42B1C400E1E8C8 - 8B7934D421F537BA006E9731 + 8B1A953927CCBA8800649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -636,7 +636,7 @@ StatusbarIsVisible TimeStamp - 569718714.80265605 + 667728520.41197097 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -653,8 +653,7 @@ 5 WindowOrderList - 8B7934D521F537BA006E9731 - /Users/christopherjohnson/Desktop/MacVST/ButterComp/ButterComp.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ButterComp/ButterComp.xcodeproj WindowString 544 355 810 487 0 0 1440 878 diff --git a/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.pbxuser b/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.pbxuser index 26154bb29..c865e8d77 100755 --- a/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.pbxuser +++ b/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.pbxuser @@ -49,12 +49,12 @@ PBXFileDataSource_Warnings_ColumnID, ); }; - PBXPerProjectTemplateStateSaveDate = 569718749; - PBXWorkspaceStateSaveDate = 569718749; + PBXPerProjectTemplateStateSaveDate = 667728524; + PBXWorkspaceStateSaveDate = 667728524; }; perUserProjectItems = { - 8B42FDC0216057860092969A /* PBXTextBookmark */ = 8B42FDC0216057860092969A /* PBXTextBookmark */; - 8B42FDC5216057860092969A /* PBXTextBookmark */ = 8B42FDC5216057860092969A /* PBXTextBookmark */; + 8B1A955627CCBA9300649D11 /* PBXTextBookmark */ = 8B1A955627CCBA9300649D11 /* PBXTextBookmark */; + 8B1A955A27CCBA9300649D11 /* PBXTextBookmark */ = 8B1A955A27CCBA9300649D11 /* PBXTextBookmark */; 8B7934F221F537F3006E9731 /* PBXTextBookmark */ = 8B7934F221F537F3006E9731 /* PBXTextBookmark */; 8B7934F621F537F3006E9731 /* PBXTextBookmark */ = 8B7934F621F537F3006E9731 /* PBXTextBookmark */; }; @@ -88,9 +88,9 @@ }; 24D8286F09A914000093AEF8 /* ButterComp2Proc.cpp */ = { uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {848, 6292}}"; + sepNavIntBoundsRect = "{{0, 0}, {903, 8676}}"; sepNavSelRange = "{7880, 0}"; - sepNavVisRange = "{7052, 1652}"; + sepNavVisRange = "{7328, 1227}"; sepNavWindowFrame = "{{394, 47}, {895, 831}}"; }; }; @@ -108,25 +108,25 @@ isa = PBXCodeSenseManager; indexTemplatePath = ""; }; - 8B42FDC0216057860092969A /* PBXTextBookmark */ = { + 8B1A955627CCBA9300649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* ButterComp2Proc.cpp */; - name = "ButterComp2Proc.cpp: 382"; + name = "ButterComp2Proc.cpp: 389"; rLen = 0; rLoc = 11279; rType = 0; - vrLen = 322; - vrLoc = 11177; + vrLen = 272; + vrLoc = 6505; }; - 8B42FDC5216057860092969A /* PBXTextBookmark */ = { + 8B1A955A27CCBA9300649D11 /* PBXTextBookmark */ = { isa = PBXTextBookmark; fRef = 24D8286F09A914000093AEF8 /* ButterComp2Proc.cpp */; - name = "ButterComp2Proc.cpp: 268"; + name = "ButterComp2Proc.cpp: 279"; rLen = 0; rLoc = 7880; rType = 0; - vrLen = 1753; - vrLoc = 7074; + vrLen = 1227; + vrLoc = 7328; }; 8B7934F221F537F3006E9731 /* PBXTextBookmark */ = { isa = PBXTextBookmark; diff --git a/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.perspectivev3 b/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.perspectivev3 index 4fb4fe408..4417f08f1 100755 --- a/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.perspectivev3 +++ b/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj/christopherjohnson.perspectivev3 @@ -241,10 +241,10 @@ _historyCapacity 0 bookmark - 8B7934F621F537F3006E9731 + 8B1A955A27CCBA9300649D11 history - 8B42FDC5216057860092969A + 8B7934F621F537F3006E9731 SplitCount @@ -392,10 +392,10 @@ _historyCapacity 0 bookmark - 8B7934F221F537F3006E9731 + 8B1A955627CCBA9300649D11 history - 8B42FDC0216057860092969A + 8B7934F221F537F3006E9731 SplitCount @@ -409,18 +409,18 @@ GeometryConfiguration Frame - {{0, 0}, {603, 117}} + {{0, 0}, {603, 102}} RubberWindowFrame 138 241 810 487 0 0 1440 878 Module PBXNavigatorGroup Proportion - 117pt + 102pt Proportion - 324pt + 339pt Tabs @@ -434,7 +434,7 @@ GeometryConfiguration Frame - {{10, 27}, {603, 297}} + {{10, 27}, {603, 312}} RubberWindowFrame 138 241 810 487 0 0 1440 878 @@ -518,11 +518,11 @@ TableOfContents - 8B7934F321F537F3006E9731 + 8B1A955727CCBA9300649D11 1CA23ED40692098700951B8B - 8B7934F421F537F3006E9731 + 8B1A955827CCBA9300649D11 8B0237581D42B1C400E1E8C8 - 8B7934F521F537F3006E9731 + 8B1A955927CCBA9300649D11 1CA23EDF0692099D00951B8B 1CA23EE00692099D00951B8B 1CA23EE10692099D00951B8B @@ -675,7 +675,7 @@ StatusbarIsVisible TimeStamp - 569718771.40327895 + 667728531.29586196 ToolbarConfigUserDefaultsMinorVersion 2 ToolbarDisplayMode @@ -693,7 +693,7 @@ WindowOrderList 8B42FD99216056C30092969A - /Users/christopherjohnson/Desktop/MacVST/ButterComp2/ButterComp2.xcodeproj + /Users/christopherjohnson/Desktop/airwindows/plugins/MacVST/ButterComp2/ButterComp2.xcodeproj WindowString 138 241 810 487 0 0 1440 878 diff --git a/plugins/MacVST/Channel6/source/Channel6Proc.cpp b/plugins/MacVST/Channel6/source/Channel6Proc.cpp index c57faee2c..be57dbc44 100755 --- a/plugins/MacVST/Channel6/source/Channel6Proc.cpp +++ b/plugins/MacVST/Channel6/source/Channel6Proc.cpp @@ -90,11 +90,11 @@ void Channel6::processReplacing(float **inputs, float **outputs, VstInt32 sample //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -189,12 +189,12 @@ void Channel6::processDoubleReplacing(double **inputs, double **outputs, VstInt3 } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/Holt/source/HoltProc.cpp b/plugins/MacVST/Holt/source/HoltProc.cpp index 413c1e159..d37f50ef4 100755 --- a/plugins/MacVST/Holt/source/HoltProc.cpp +++ b/plugins/MacVST/Holt/source/HoltProc.cpp @@ -127,11 +127,11 @@ void Holt::processReplacing(float **inputs, float **outputs, VstInt32 sampleFram //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -263,12 +263,12 @@ void Holt::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sa } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/Loud/source/LoudProc.cpp b/plugins/MacVST/Loud/source/LoudProc.cpp index 5669725ca..8637aba0c 100755 --- a/plugins/MacVST/Loud/source/LoudProc.cpp +++ b/plugins/MacVST/Loud/source/LoudProc.cpp @@ -107,11 +107,11 @@ void Loud::processReplacing(float **inputs, float **outputs, VstInt32 sampleFram //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -222,12 +222,12 @@ void Loud::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sa //number, we really don't want to meaninglessly multiply that by 1.0. //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/MV/source/MVProc.cpp b/plugins/MacVST/MV/source/MVProc.cpp index 5a0b96333..bab3b0416 100755 --- a/plugins/MacVST/MV/source/MVProc.cpp +++ b/plugins/MacVST/MV/source/MVProc.cpp @@ -752,11 +752,11 @@ void MV::processReplacing(float **inputs, float **outputs, VstInt32 sampleFrames //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -1513,12 +1513,12 @@ void MV::processDoubleReplacing(double **inputs, double **outputs, VstInt32 samp //Dry/Wet control, defaults to the last slider //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/Pop/source/PopProc.cpp b/plugins/MacVST/Pop/source/PopProc.cpp index 8ddfd5490..2186f06fb 100755 --- a/plugins/MacVST/Pop/source/PopProc.cpp +++ b/plugins/MacVST/Pop/source/PopProc.cpp @@ -237,11 +237,11 @@ void Pop::processReplacing(float **inputs, float **outputs, VstInt32 sampleFrame //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -483,12 +483,12 @@ void Pop::processDoubleReplacing(double **inputs, double **outputs, VstInt32 sam } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/PurestSquish/source/PurestSquishProc.cpp b/plugins/MacVST/PurestSquish/source/PurestSquishProc.cpp index e763aa5ce..48ccc6d3a 100755 --- a/plugins/MacVST/PurestSquish/source/PurestSquishProc.cpp +++ b/plugins/MacVST/PurestSquish/source/PurestSquishProc.cpp @@ -460,11 +460,11 @@ void PurestSquish::processReplacing(float **inputs, float **outputs, VstInt32 sa //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -929,12 +929,12 @@ void PurestSquish::processDoubleReplacing(double **inputs, double **outputs, Vst } //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/Spiral/source/SpiralProc.cpp b/plugins/MacVST/Spiral/source/SpiralProc.cpp index d06e261e1..2401ee59c 100755 --- a/plugins/MacVST/Spiral/source/SpiralProc.cpp +++ b/plugins/MacVST/Spiral/source/SpiralProc.cpp @@ -29,11 +29,11 @@ void Spiral::processReplacing(float **inputs, float **outputs, VstInt32 sampleFr //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -67,12 +67,12 @@ void Spiral::processDoubleReplacing(double **inputs, double **outputs, VstInt32 inputSampleR = sin(inputSampleR * fabs(inputSampleR)) / ((fabs(inputSampleR) == 0.0) ?1:fabs(inputSampleR)); //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/Spiral2/source/Spiral2Proc.cpp b/plugins/MacVST/Spiral2/source/Spiral2Proc.cpp index d18f357dc..18e1583b8 100755 --- a/plugins/MacVST/Spiral2/source/Spiral2Proc.cpp +++ b/plugins/MacVST/Spiral2/source/Spiral2Proc.cpp @@ -87,11 +87,11 @@ void Spiral2::processReplacing(float **inputs, float **outputs, VstInt32 sampleF //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -184,12 +184,12 @@ void Spiral2::processDoubleReplacing(double **inputs, double **outputs, VstInt32 flip = !flip; //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL; diff --git a/plugins/MacVST/UnBox/source/UnBoxProc.cpp b/plugins/MacVST/UnBox/source/UnBoxProc.cpp index b50db896e..cbeae0d5e 100755 --- a/plugins/MacVST/UnBox/source/UnBoxProc.cpp +++ b/plugins/MacVST/UnBox/source/UnBoxProc.cpp @@ -187,11 +187,11 @@ void UnBox::processReplacing(float **inputs, float **outputs, VstInt32 sampleFra //begin 32 bit stereo floating point dither int expon; frexpf((float)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); frexpf((float)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 5.960464655174751e-36L * pow(2,expon+62); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 5.5e-36l * pow(2,expon+62)); //end 32 bit stereo floating point dither *out1 = inputSampleL; @@ -383,12 +383,12 @@ void UnBox::processDoubleReplacing(double **inputs, double **outputs, VstInt32 s if (output != 1.0) {inputSampleL *= output; inputSampleR *= output;} //begin 64 bit stereo floating point dither - int expon; frexp((double)inputSampleL, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleL += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); - frexp((double)inputSampleR, &expon); - fpd ^= fpd << 13; fpd ^= fpd >> 17; fpd ^= fpd << 5; - inputSampleR += static_cast(fpd) * 1.110223024625156e-44L * pow(2,expon+62); + //int expon; frexp((double)inputSampleL, &expon); + fpdL ^= fpdL << 13; fpdL ^= fpdL >> 17; fpdL ^= fpdL << 5; + //inputSampleL += ((double(fpdL)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); + //frexp((double)inputSampleR, &expon); + fpdR ^= fpdR << 13; fpdR ^= fpdR >> 17; fpdR ^= fpdR << 5; + //inputSampleR += ((double(fpdR)-uint32_t(0x7fffffff)) * 1.1e-44l * pow(2,expon+62)); //end 64 bit stereo floating point dither *out1 = inputSampleL;