mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Count-in is a no-roll operation.
This commit is contained in:
parent
6e4eed51ca
commit
478f26b2ad
1 changed files with 2 additions and 2 deletions
|
|
@ -720,9 +720,9 @@ class LIBARDOUR_API Session : public PBD::StatefulDestructible, public PBD::Scop
|
|||
bool synced_to_mtc () const { return config.get_external_sync() && Config->get_sync_source() == MTC && g_atomic_int_get (const_cast<gint*>(&_mtc_active)); }
|
||||
bool synced_to_ltc () const { return config.get_external_sync() && Config->get_sync_source() == LTC && g_atomic_int_get (const_cast<gint*>(&_ltc_active)); }
|
||||
|
||||
double transport_speed() const { return _transport_speed; }
|
||||
double transport_speed() const { return _count_in_samples > 0 ? 0. : _transport_speed; }
|
||||
bool transport_stopped() const { return _transport_speed == 0.0; }
|
||||
bool transport_rolling() const { return _transport_speed != 0.0; }
|
||||
bool transport_rolling() const { return _transport_speed != 0.0 && _count_in_samples == 0; }
|
||||
|
||||
bool silent () { return _silent; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue