summaryrefslogtreecommitdiff
path: root/libs/ardour/butler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/butler.cc')
-rw-r--r--libs/ardour/butler.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/libs/ardour/butler.cc b/libs/ardour/butler.cc
index 35fb6bcc03..9847d55e40 100644
--- a/libs/ardour/butler.cc
+++ b/libs/ardour/butler.cc
@@ -29,6 +29,7 @@
#include "ardour/midi_diskstream.h"
#include "ardour/session.h"
#include "ardour/track.h"
+#include "ardour/auditioner.h"
#include "i18n.h"
@@ -210,11 +211,14 @@ Butler::thread_work ()
boost::shared_ptr<RouteList> rl = _session.get_routes();
+ RouteList rl_with_auditioner = *rl;
+ rl_with_auditioner.push_back (_session.the_auditioner());
+
// for (i = dsl->begin(); i != dsl->end(); ++i) {
// cerr << "BEFORE " << (*i)->name() << ": pb = " << (*i)->playback_buffer_load() << " cp = " << (*i)->capture_buffer_load() << endl;
// }
- for (i = rl->begin(); !transport_work_requested() && should_run && i != rl->end(); ++i) {
+ for (i = rl_with_auditioner.begin(); !transport_work_requested() && should_run && i != rl_with_auditioner.end(); ++i) {
boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (*i);
if (!tr) {
@@ -246,7 +250,7 @@ Butler::thread_work ()
}
- if (i != rl->begin() && i != rl->end()) {
+ if (i != rl_with_auditioner.begin() && i != rl_with_auditioner.end()) {
/* we didn't get to all the streams */
disk_work_outstanding = true;
}