1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-04 15:50:10 +01:00

add support for Nyquist effects in Chains, written by Leyland and Martyn based on an idea by Edgar

This commit is contained in:
richardash1981
2012-05-26 20:25:13 +00:00
parent 15fb587eb1
commit 627f4dd757
5 changed files with 111 additions and 12 deletions

View File

@@ -283,11 +283,13 @@ wxArrayString BatchCommands::GetAllCommands()
additionalEffects = 0;
#endif // CLEANSPEECH
effects = EffectManager::Get().GetEffects(PROCESS_EFFECT | BUILTIN_EFFECT | additionalEffects);
effects = EffectManager::Get().GetEffects(PROCESS_EFFECT | BUILTIN_EFFECT | PLUGIN_EFFECT | additionalEffects);
for(i=0; i<effects->GetCount(); i++) {
command=(*effects)[i]->GetEffectIdentifier();
if (!command.IsEmpty()) {
commands.Add( command);
if ((*effects)[i]->SupportsChains()) {
command=(*effects)[i]->GetEffectIdentifier();
if (!command.IsEmpty()) {
commands.Add( command);
}
}
}
delete effects;