summaryrefslogtreecommitdiff
path: root/libs/ardour/session_export.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-02-17 20:16:23 -0700
committerPaul Davis <paul@linuxaudiosystems.com>2020-02-19 15:07:42 -0700
commitad402e76afa9d4c16a514b3792c670e0c84c63c4 (patch)
tree5d2e3e03b0ef898a5488e097f1045a66f6fa064a /libs/ardour/session_export.cc
parentb1922fb220cab5b4685eb6c6f53ecc1be221f553 (diff)
remove "destination_sample" from API for Session::set_transport_speed()
This was a leftover from changes made for Tracks Live, related to the concept of an auto-return preference. We don't use this anywhere in Ardour or Mixbus, and the concept should eventually be removed entirely.
Diffstat (limited to 'libs/ardour/session_export.cc')
-rw-r--r--libs/ardour/session_export.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_export.cc b/libs/ardour/session_export.cc
index c86d55e248..7ed9498507 100644
--- a/libs/ardour/session_export.cc
+++ b/libs/ardour/session_export.cc
@@ -253,7 +253,7 @@ Session::process_export_fw (pframes_t nframes)
return;
}
- set_transport_speed (1.0, 0, false);
+ set_transport_speed (1.0, false);
butler_transport_work ();
g_atomic_int_set (&_butler->should_do_transport_work, 0);
butler_completed_transport_work ();