summaryrefslogtreecommitdiff
path: root/libs/ardour/session_export.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-07-15 17:03:07 +0200
committerRobin Gareus <robin@gareus.org>2016-07-16 02:14:13 +0200
commit77687519b69f39aaa2354f4c9945958fc1c630fe (patch)
tree36ed0f367bc81cccaba0ed01d837c56ff2fea072 /libs/ardour/session_export.cc
parent6626723880e6d464bf8d59178120d191a8423c93 (diff)
Refactor TmpFile into an abstract base class
This allows a TmpFile pointer to be either a Sync or Async (Threaded) writer. As result we must be able to handle both RT and non RT processing. Still, post-processing (normalization and encoding) should always happen faster than realtime (freewheeling). Since jack does not allow a client to change to freewheeling from within the process-callback, the async-writer disk-thread FileFlushed is used to initiate post-processing.
Diffstat (limited to 'libs/ardour/session_export.cc')
-rw-r--r--libs/ardour/session_export.cc34
1 files changed, 20 insertions, 14 deletions
diff --git a/libs/ardour/session_export.cc b/libs/ardour/session_export.cc
index 7234411ce4..463f504411 100644
--- a/libs/ardour/session_export.cc
+++ b/libs/ardour/session_export.cc
@@ -177,13 +177,14 @@ Session::start_audio_export (framepos_t position, bool realtime)
return -1;
}
+ _engine.Freewheel.connect_same_thread (export_freewheel_connection, boost::bind (&Session::process_export_fw, this, _1));
+
if (_realtime_export) {
Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
_export_rolling = true;
process_function = &Session::process_export_fw;
return 0;
} else {
- _engine.Freewheel.connect_same_thread (export_freewheel_connection, boost::bind (&Session::process_export_fw, this, _1));
_export_rolling = true;
return _engine.freewheel (true);
}
@@ -197,14 +198,18 @@ Session::process_export (pframes_t nframes)
}
if (_export_rolling) {
- /* make sure we've caught up with disk i/o, since
- we're running faster than realtime c/o JACK.
- */
- _butler->wait_until_finished ();
+ if (!_realtime_export) {
+ /* make sure we've caught up with disk i/o, since
+ * we're running faster than realtime c/o JACK.
+ */
+ _butler->wait_until_finished ();
+ }
/* do the usual stuff */
process_without_events (nframes);
+ } else if (_realtime_export) {
+ fail_roll (nframes); // somehow we need to silence _ALL_ output buffers
}
try {
@@ -221,13 +226,14 @@ Session::process_export (pframes_t nframes)
void
Session::process_export_fw (pframes_t nframes)
{
+ const bool need_buffers = _engine.freewheeling ();
if (_export_preroll > 0) {
- if (!_realtime_export) {
+ if (need_buffers) {
_engine.main_thread()->get_buffers ();
}
fail_roll (nframes);
- if (!_realtime_export) {
+ if (need_buffers) {
_engine.main_thread()->drop_buffers ();
}
@@ -249,11 +255,11 @@ Session::process_export_fw (pframes_t nframes)
if (_export_latency > 0) {
framepos_t remain = std::min ((framepos_t)nframes, _export_latency);
- if (!_realtime_export) {
+ if (need_buffers) {
_engine.main_thread()->get_buffers ();
}
process_without_events (remain);
- if (!_realtime_export) {
+ if (need_buffers) {
_engine.main_thread()->drop_buffers ();
}
@@ -264,11 +270,12 @@ Session::process_export_fw (pframes_t nframes)
return;
}
}
- if (!_realtime_export) {
+
+ if (need_buffers) {
_engine.main_thread()->get_buffers ();
}
process_export (nframes);
- if (!_realtime_export) {
+ if (need_buffers) {
_engine.main_thread()->drop_buffers ();
}
@@ -304,10 +311,9 @@ Session::finalize_audio_export ()
if (_realtime_export) {
Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock ());
process_function = &Session::process_with_events;
- } else {
- _engine.freewheel (false);
- export_freewheel_connection.disconnect();
}
+ _engine.freewheel (false);
+ export_freewheel_connection.disconnect();
_mmc->enable_send (_pre_export_mmc_enabled);