summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-12-23 01:38:38 +0000
committerCarl Hetherington <carl@carlh.net>2011-12-23 01:38:38 +0000
commit2858e239f420c0e5eaa58a1175797de446e4f6f6 (patch)
tree358aaf6be7c8333cf1af00cecf51ccdb91ce8b23 /libs/ardour/route.cc
parentb7688699efbf0b6e185b1a9965a1e7d8f60b9ed3 (diff)
Rename a few bits and fix a undeclared method.
git-svn-id: svn://localhost/ardour2/branches/3.0@11066 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index f39b094ccd..10806767d3 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -400,7 +400,7 @@ Route::process_output_buffers (BufferSet& bufs,
framepos_t start_frame, framepos_t end_frame, pframes_t nframes,
int declick, bool gain_automation_ok)
{
- bool monitor = should_monitor ();
+ bool monitor = ardour_should_monitor ();
bufs.set_is_silent (false);
@@ -3846,8 +3846,9 @@ Route::setup_invisible_processors ()
}
}
+/** @return true if Ardour should provide monitoring for this route */
bool
-Route::should_monitor () const
+Route::ardour_should_monitor () const
{
switch (Config->get_monitoring_model()) {
case HardwareMonitoring: