mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
This commit is contained in:
parent
d4e2bf2232
commit
6574889f13
3 changed files with 20 additions and 0 deletions
|
|
@ -289,6 +289,9 @@ public:
|
|||
if (name.isEmpty() || ! juceFilter->isParameterAutomatable (index))
|
||||
outParameterInfo.flags |= kAudioUnitParameterFlag_NonRealTime;
|
||||
|
||||
if (juceFilter->isMetaParameter (index))
|
||||
outParameterInfo.flags |= kAudioUnitParameterFlag_IsGlobalMeta;
|
||||
|
||||
AUBase::FillInParameterName (outParameterInfo,
|
||||
PlatformUtilities::juceStringToCFString (name),
|
||||
false);
|
||||
|
|
@ -536,6 +539,9 @@ public:
|
|||
if (! prepared)
|
||||
prepareToPlay();
|
||||
|
||||
if (juceFilter != 0)
|
||||
juceFilter->reset();
|
||||
|
||||
return JuceAUBaseClass::Reset (inScope, inElement);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue