summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/plugin.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-12-26 17:01:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-12-26 17:01:31 +0000
commit5558b3cf06b98060438d1e68c8d5d2f4a9c2f8f6 (patch)
treef760d3daccb5e4fdafe73c013a1c8bc11684a015 /libs/ardour/ardour/plugin.h
parentbda0f938fbf640ad60b6f1d3bc7ed18bcb2a0c2b (diff)
a grab bag of changes correcting and improving the way MIDI note on/off tracking is done. may/should fix a number of problem with spurious note-offs under a variety of circumstances
git-svn-id: svn://localhost/ardour2/branches/3.0@11074 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/ardour/plugin.h')
-rw-r--r--libs/ardour/ardour/plugin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/ardour/plugin.h b/libs/ardour/ardour/plugin.h
index 9c073d4a19..0c2bcbdd93 100644
--- a/libs/ardour/ardour/plugin.h
+++ b/libs/ardour/ardour/plugin.h
@@ -141,6 +141,8 @@ class Plugin : public PBD::StatefulDestructible, public Latent
}
void realtime_handle_transport_stopped ();
+ void realtime_locate ();
+ void monitoring_changed ();
struct PresetRecord {
PresetRecord () : user (true) {}
@@ -257,6 +259,8 @@ private:
bool _have_pending_stop_events;
PresetRecord _last_preset;
bool _parameter_changed_since_last_preset;
+
+ void resolve_midi ();
};
PluginPtr find_plugin(ARDOUR::Session&, std::string unique_id, ARDOUR::PluginType);