summaryrefslogtreecommitdiff
path: root/libs/ardour/session_export.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-24 00:39:28 +0000
committerDavid Robillard <d@drobilla.net>2009-10-24 00:39:28 +0000
commita532e7247cfccaf35edbb9b76868ead3cc9b1342 (patch)
tree3bd051d42f95dccf78d70ed0d389ab6c98c42ff9 /libs/ardour/session_export.cc
parentd56817e7856040adf3db6bda812dfaef7d493c80 (diff)
Move butler methods from Session to Butler.
Slay the dragon. A lil' bit. git-svn-id: svn://localhost/ardour2/branches/3.0@5901 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_export.cc')
-rw-r--r--libs/ardour/session_export.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/session_export.cc b/libs/ardour/session_export.cc
index 764898875b..3eda11bab7 100644
--- a/libs/ardour/session_export.cc
+++ b/libs/ardour/session_export.cc
@@ -65,7 +65,7 @@ Session::pre_export ()
{
get_export_status (); // Init export_status
- wait_till_butler_finished ();
+ _butler->wait_until_finished ();
/* take everyone out of awrite to avoid disasters */
@@ -138,7 +138,7 @@ Session::start_audio_export (nframes_t position, bool realtime)
set_transport_speed (1.0, false);
butler_transport_work ();
- g_atomic_int_set (&butler->should_do_transport_work, 0);
+ g_atomic_int_set (&_butler->should_do_transport_work, 0);
post_transport ();
/* we are ready to go ... */
@@ -173,7 +173,7 @@ Session::process_export (nframes_t nframes)
we're running faster than realtime c/o JACK.
*/
- wait_till_butler_finished ();
+ _butler->wait_until_finished ();
}
/* do the usual stuff */
@@ -211,7 +211,7 @@ Session::stop_audio_export ()
*/
realtime_stop (true);
- schedule_butler_transport_work ();
+ _butler->schedule_transport_work ();
if (!export_status->aborted()) {
ExportReadFinished ();