summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lv2_plugin.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-06-05 14:44:54 +0200
committerRobin Gareus <robin@gareus.org>2016-06-05 14:44:54 +0200
commit37b90c2a9eecbb97e4bbe16634272849be6b4e9f (patch)
treed9296aacda80147a008776d1d6e8399f35d4d665 /libs/ardour/ardour/lv2_plugin.h
parentb4a020cdf57107d44fabd983b6c4074da2eb519e (diff)
refine self-automating plugin interface
* thin automation at end * allow plugins to disable its internal write state (ctrl port) * Debug messages
Diffstat (limited to 'libs/ardour/ardour/lv2_plugin.h')
-rw-r--r--libs/ardour/ardour/lv2_plugin.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/ardour/lv2_plugin.h b/libs/ardour/ardour/lv2_plugin.h
index 34e68fdc7f..6552e40ac3 100644
--- a/libs/ardour/ardour/lv2_plugin.h
+++ b/libs/ardour/ardour/lv2_plugin.h
@@ -210,7 +210,8 @@ class LIBARDOUR_API LV2Plugin : public ARDOUR::Plugin, public ARDOUR::Workee
PORT_POSITION = 1 << 7, ///< Event port understands position
PORT_PATCHMSG = 1 << 8, ///< Event port supports patch:Message
PORT_AUTOCTRL = 1 << 9, ///< Event port supports auto:AutomationControl
- PORT_CTRLED = 1 << 10 ///< Port prop auto:AutomationControlled (can be self controlled)
+ PORT_CTRLED = 1 << 10, ///< Port prop auto:AutomationControlled (can be self controlled)
+ PORT_CTRLER = 1 << 11 ///< Port prop auto:AutomationController (can be self set)
} PortFlag;
typedef unsigned PortFlags;