1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 08:33:36 +02:00

Migrating the remaining effects

This brings the builtin, LV2, and VAMP effects inline with the
Audio Units, LADSPA, and VST effects.  All effects now share
a common UI.

This gives all effects (though not implemented for all):

User and factory preset capability
Preset import/export capability
Shared or private configuration options

Builtin effects can now be migrated to RTP, depending on algorithm.
LV2 effects now support graphical interfaces if the plugin supplies one.
Nyquist prompt enhanced to provide some features of the Nyquist Workbench.

It may not look like it, but this was a LOT of work, so trust me, there
WILL be problems and everything effect related should be suspect.  Keep
a sharp eye (or two) open.
This commit is contained in:
Leland Lucius
2015-04-16 22:53:42 -05:00
parent 40e6bcc56a
commit 8fbfa460c4
140 changed files with 17288 additions and 20367 deletions

View File

@@ -690,8 +690,8 @@ NyqBench::NyqBench(wxWindow * parent)
mOutput = NULL;
// No need to delete...EffectManager will do it
mEffect = new EffectNyquist(wxT("===nyquistworker==="));
EffectManager::Get().RegisterEffect(mEffect, HIDDEN_EFFECT);
mEffect = new NyquistEffect(wxT("===nyquistworker==="));
EffectManager::Get().RegisterEffect(mEffect);
mPath = gPrefs->Read(wxT("NyqBench/Path"), wxEmptyString);
mAutoLoad = (gPrefs->Read(wxT("NyqBench/AutoLoad"), 0L) != 0);
@@ -1366,7 +1366,7 @@ void NyqBench::OnGo(wxCommandEvent & e)
UpdateWindowUI();
const PluginID & id = EffectManager::Get().GetEffectByIdentifier(mEffect->GetSymbol());
p->OnEffect(ALL_EFFECTS, id);
p->OnEffect(id);
mRunning = false;
UpdateWindowUI();

View File

@@ -191,7 +191,7 @@ class NyqBench:public wxFrame
wxFindReplaceData mFindData;
NyqTextCtrl *mFindText;
EffectNyquist *mEffect;
NyquistEffect *mEffect;
wxFont mScriptFont;
wxFont mOutputFont;