This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#move_uad_plugins.py - python script to remove unlicensed UAD plugin binaries from VST, AU and AAX folders | |
import os, shutil | |
#http://stackoverflow.com/a/800201/674745 | |
def get_immediate_subdirectories(a_dir): | |
return [name for name in os.listdir(a_dir) | |
if (os.path.isdir(os.path.join(a_dir, name)) and name != 'Mono')] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class IPlugGenTwoInputs : public IPlug | |
{ | |
public: | |
IPlugGenTwoInputs(IPlugInstanceInfo instanceInfo); | |
~IPlugGenTwoInputs(); | |
void Reset(); | |
void OnParamChange(int paramIdx); | |
void ProcessDoubleReplacing(double** inputs, double** outputs, int nFrames); |
NewerOlder