Browse Source

Ignore AU hosts that set kAudioUnitProperty_InPlaceProcessing

Signed-off-by: falkTX <falktx@falktx.com>
pull/457/head
falkTX 11 months ago
parent
commit
feaa5d3570
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      distrho/src/DistrhoPluginAU.cpp

+ 4
- 0
distrho/src/DistrhoPluginAU.cpp View File

@@ -1451,6 +1451,10 @@ public:
return kAudioUnitErr_PropertyNotInUse;
#endif

case kAudioUnitProperty_InPlaceProcessing:
// nothing to do
return noErr;

case kAudioUnitProperty_PresentPreset:
DISTRHO_SAFE_ASSERT_UINT_RETURN(inScope == kAudioUnitScope_Global, inScope, kAudioUnitErr_InvalidScope);
DISTRHO_SAFE_ASSERT_UINT_RETURN(inElement == 0, inElement, kAudioUnitErr_InvalidElement);


Loading…
Cancel
Save