1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00

Added flag: JucePlugin_AAXDisableBypass

This commit is contained in:
jules 2012-09-28 09:23:07 +01:00
parent 3578465cba
commit bc259dc955
2 changed files with 7 additions and 0 deletions

View file

@ -506,7 +506,12 @@ struct AAXClasses
properties->AddProperty (AAX_eProperty_ManufacturerID, JucePlugin_AAXManufacturerCode);
properties->AddProperty (AAX_eProperty_ProductID, JucePlugin_AAXProductId);
#if JucePlugin_AAXDisableBypass
properties->AddProperty (AAX_eProperty_CanBypass, false);
#else
properties->AddProperty (AAX_eProperty_CanBypass, true);
#endif
properties->AddProperty (AAX_eProperty_InputStemFormat, getFormatForChans (numInputs));
properties->AddProperty (AAX_eProperty_OutputStemFormat, getFormatForChans (numOutputs));