Browse Source

Added a macro JucePlugin_AAXDisableDynamicProcessing, which can be used to disable dynamics processing in an AAX plugin

tags/2021-05-28
jules 9 years ago
parent
commit
a48465327b
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp

+ 4
- 0
modules/juce_audio_plugin_client/AAX/juce_AAX_Wrapper.cpp View File

@@ -1308,6 +1308,10 @@ struct AAXClasses
properties->AddProperty (AAX_eProperty_Constraint_MultiMonoSupport, true);
#endif
#if JucePlugin_AAXDisableDynamicProcessing
properties->AddProperty (AAX_eProperty_Constraint_AlwaysProcess, true);
#endif
if (enableAuxBusesForCurrentFormat (busUtils, inputLayout, outputLayout))
{
check (desc.AddSideChainIn (JUCEAlgorithmIDs::sideChainBuffers));


Loading…
Cancel
Save