summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2017-10-05 09:59:03 -0500
committerBen Loftis <ben@harrisonconsoles.com>2017-10-05 09:59:03 -0500
commit28d8f2f6b9b512fb7d866a829d6b426bfebd74ad (patch)
tree5c9a1f0b55624e25b5a5e93567ba28c489180348 /libs/ardour/ardour
parente156ec28bb2ac693391e4f31a54375ed7ca24ea9 (diff)
US2400: send_pan_azimuth lookup function (currently mb-only)
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/route.h1
-rw-r--r--libs/ardour/ardour/stripable.h1
-rw-r--r--libs/ardour/ardour/vca.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h
index 8500232c27..235ae2089b 100644
--- a/libs/ardour/ardour/route.h
+++ b/libs/ardour/ardour/route.h
@@ -557,6 +557,7 @@ public:
*/
boost::shared_ptr<AutomationControl> send_level_controllable (uint32_t n) const;
boost::shared_ptr<AutomationControl> send_enable_controllable (uint32_t n) const;
+ boost::shared_ptr<AutomationControl> send_pan_azi_controllable (uint32_t n) const;
/* for the same value of @param n, this returns the name of the send
* associated with the pair of controllables returned by the above two methods.
*/
diff --git a/libs/ardour/ardour/stripable.h b/libs/ardour/ardour/stripable.h
index b80b97005a..28c8fe1d93 100644
--- a/libs/ardour/ardour/stripable.h
+++ b/libs/ardour/ardour/stripable.h
@@ -177,6 +177,7 @@ class LIBARDOUR_API Stripable : public SessionObject,
*/
virtual boost::shared_ptr<AutomationControl> send_level_controllable (uint32_t n) const = 0;
virtual boost::shared_ptr<AutomationControl> send_enable_controllable (uint32_t n) const = 0;
+ virtual boost::shared_ptr<AutomationControl> send_pan_azi_controllable (uint32_t n) const = 0;
/* for the same value of @param n, this returns the name of the send
* associated with the pair of controllables returned by the above two methods.
diff --git a/libs/ardour/ardour/vca.h b/libs/ardour/ardour/vca.h
index 73dd6a917f..49bb575e1d 100644
--- a/libs/ardour/ardour/vca.h
+++ b/libs/ardour/ardour/vca.h
@@ -137,6 +137,7 @@ class LIBARDOUR_API VCA : public Stripable,
std::string comp_speed_name (uint32_t mode) const { return std::string(); }
boost::shared_ptr<AutomationControl> send_level_controllable (uint32_t n) const { return boost::shared_ptr<AutomationControl>(); }
boost::shared_ptr<AutomationControl> send_enable_controllable (uint32_t n) const { return boost::shared_ptr<AutomationControl>(); }
+ boost::shared_ptr<AutomationControl> send_pan_azi_controllable (uint32_t n) const { return boost::shared_ptr<AutomationControl>(); }
std::string send_name (uint32_t n) const { return std::string(); }
boost::shared_ptr<AutomationControl> master_send_enable_controllable () const { return boost::shared_ptr<AutomationControl>(); }
boost::shared_ptr<MonitorProcessor> monitor_control() const { return boost::shared_ptr<MonitorProcessor>(); }