summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/io.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-07-11 22:57:34 +0200
committerRobin Gareus <robin@gareus.org>2019-07-11 22:57:34 +0200
commitc6740b7cb06591f68851a3821a6cbc2b095e5bd0 (patch)
treeca7652703c2511367cdb39f0e70b340f13717cb6 /libs/ardour/ardour/io.h
parentb7369f421f151a7e9f31969828c38882027cd996 (diff)
Prevent adding a 2nd MIDI input/output port
Ardour's Tracks/Routes are not capable of handing more than one MIDI port per per route properly. Most Plugin standards don't support this either. However, at this point in time IO::ensure_ports_locked() is not limited by this restriction! It is still possible to indirectly add a 2nd MIDI data-buffer and output-port via plugin pin-management, or simply plugins with two MIDI output ports when using flexible I/O.
Diffstat (limited to 'libs/ardour/ardour/io.h')
-rw-r--r--libs/ardour/ardour/io.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/ardour/io.h b/libs/ardour/ardour/io.h
index 3f4fdc5797..d9fc412e27 100644
--- a/libs/ardour/ardour/io.h
+++ b/libs/ardour/ardour/io.h
@@ -104,6 +104,8 @@ public:
boost::shared_ptr<Bundle> bundle () { return _bundle; }
+ bool can_add_port (DataType) const;
+
int add_port (std::string connection, void *src, DataType type = DataType::NIL);
int remove_port (boost::shared_ptr<Port>, void *src);
int connect (boost::shared_ptr<Port> our_port, std::string other_port, void *src);