Browse Source

Implemented an AU method to avoid problems with some versions of the CoreAudio API.

tags/2021-05-28
jules 11 years ago
parent
commit
0147fe00f9
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      modules/juce_audio_plugin_client/AU/juce_AU_Wrapper.mm

+ 4
- 0
modules/juce_audio_plugin_client/AU/juce_AU_Wrapper.mm View File

@@ -519,6 +519,10 @@ public:
return AUBase::SetParameter (inID, inScope, inElement, inValue, inBufferOffsetInFrames);
}
// No idea what this method actually does or what it should return. Current Apple docs say nothing about it.
// (Note that this isn't marked 'override' in case older versions of the SDK don't include it)
bool CanScheduleParameters() const { return false; }
//==============================================================================
ComponentResult Version() override { return JucePlugin_VersionCode; }
bool SupportsTail() override { return true; }


Loading…
Cancel
Save