mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-23 21:57:16 +01:00
only apply transport declicking if requested to do so (default is to do so)
This commit is contained in:
parent
563d9dfb65
commit
2b1a30ca96
1 changed files with 2 additions and 2 deletions
|
|
@ -133,7 +133,7 @@ Session::no_roll (pframes_t nframes)
|
|||
|
||||
framepos_t end_frame = _transport_frame + nframes; // FIXME: varispeed + no_roll ??
|
||||
int ret = 0;
|
||||
int declick = get_transport_declick_required();
|
||||
int declick = (config.get_use_transport_fades() ? get_transport_declick_required() : false);
|
||||
boost::shared_ptr<RouteList> r = routes.reader ();
|
||||
|
||||
if (_click_io) {
|
||||
|
|
@ -174,7 +174,7 @@ Session::no_roll (pframes_t nframes)
|
|||
int
|
||||
Session::process_routes (pframes_t nframes, bool& need_butler)
|
||||
{
|
||||
int declick = get_transport_declick_required();
|
||||
int declick = (config.get_use_transport_fades() ? get_transport_declick_required() : false);
|
||||
boost::shared_ptr<RouteList> r = routes.reader ();
|
||||
|
||||
const framepos_t start_frame = _transport_frame;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue