summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/lv2_plugin.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-06-05 14:45:24 +0200
committerRobin Gareus <robin@gareus.org>2016-06-05 14:45:24 +0200
commit6e42d7b99e4c0472584d3787baddc357a4116038 (patch)
tree2731064677377b36f1cbd833defc0426badf8b71 /libs/ardour/ardour/lv2_plugin.h
parent37b90c2a9eecbb97e4bbe16634272849be6b4e9f (diff)
prepare for LV2 non-automatable control ports
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 6552e40ac3..54a1611cb6 100644
--- a/libs/ardour/ardour/lv2_plugin.h
+++ b/libs/ardour/ardour/lv2_plugin.h
@@ -211,7 +211,8 @@ class LIBARDOUR_API LV2Plugin : public ARDOUR::Plugin, public ARDOUR::Workee
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_CTRLER = 1 << 11 ///< Port prop auto:AutomationController (can be self set)
+ PORT_CTRLER = 1 << 11, ///< Port prop auto:AutomationController (can be self set)
+ PORT_NOAUTO = 1 << 12 ///< Port don't allow to automate
} PortFlag;
typedef unsigned PortFlags;