mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-19 17:11:12 +02:00
Automation -> Scripting.
This commit is contained in:
committed by
Paul Licameli
parent
08b1db6145
commit
0ad533a740
@@ -158,7 +158,7 @@ unsigned VampEffect::GetAudioInCount()
|
||||
return mPlugin->getMaxChannelCount();
|
||||
}
|
||||
|
||||
bool VampEffect::GetAutomationParameters(CommandAutomationParameters & parms)
|
||||
bool VampEffect::GetAutomationParameters(CommandParameters & parms)
|
||||
{
|
||||
for (size_t p = 0, cnt = mParameters.size(); p < cnt; p++)
|
||||
{
|
||||
@@ -204,7 +204,7 @@ bool VampEffect::GetAutomationParameters(CommandAutomationParameters & parms)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool VampEffect::SetAutomationParameters(CommandAutomationParameters & parms)
|
||||
bool VampEffect::SetAutomationParameters(CommandParameters & parms)
|
||||
{
|
||||
// First pass verifies values
|
||||
for (size_t p = 0, cnt = mParameters.size(); p < cnt; p++)
|
||||
|
@@ -62,8 +62,8 @@ public:
|
||||
// EffectClientInterface implementation
|
||||
|
||||
unsigned GetAudioInCount() override;
|
||||
bool GetAutomationParameters(CommandAutomationParameters & parms) override;
|
||||
bool SetAutomationParameters(CommandAutomationParameters & parms) override;
|
||||
bool GetAutomationParameters(CommandParameters & parms) override;
|
||||
bool SetAutomationParameters(CommandParameters & parms) override;
|
||||
|
||||
// Effect implementation
|
||||
|
||||
|
Reference in New Issue
Block a user