summaryrefslogtreecommitdiff
path: root/libs/ardour/butler.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-22 16:37:08 +0200
committerRobin Gareus <robin@gareus.org>2015-08-22 16:37:08 +0200
commitf1c21367f2839ab3fed9a2ec5d0f17907c6203b2 (patch)
treece44bd2fdc1860a2d4eba1477fd030a5c5ede11a /libs/ardour/butler.cc
parent2aee69d6d91f755da69a17678570423c14b6df6a (diff)
Fix auditioner underrun when seeking.
prevents "disk too slow" message when seeking in the auditioner.
Diffstat (limited to 'libs/ardour/butler.cc')
-rw-r--r--libs/ardour/butler.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/ardour/butler.cc b/libs/ardour/butler.cc
index f8f8c83eba..95ba2a3ffe 100644
--- a/libs/ardour/butler.cc
+++ b/libs/ardour/butler.cc
@@ -215,6 +215,7 @@ Butler::thread_work ()
boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (_session.the_auditioner());
DEBUG_TRACE (DEBUG::Butler, "seek the auditioner\n");
tr->seek(audition_seek);
+ tr->do_refill ();
_session.the_auditioner()->seek_response(audition_seek);
}