extend Session API to provide ::transport_locating()
This commit is contained in:
@@ -826,8 +826,9 @@ public:
|
||||
* playback speed is not zero, and count-in as well as latency-preroll is complete,
|
||||
* and _transport_sample changes every process cycle.
|
||||
*/
|
||||
bool transport_rolling() const;
|
||||
bool transport_will_roll_forwards() const;
|
||||
bool transport_rolling() const;
|
||||
bool transport_will_roll_forwards() const;
|
||||
bool transport_locating() const;
|
||||
|
||||
bool silent () { return _silent; }
|
||||
|
||||
|
||||
@@ -2045,6 +2045,12 @@ Session::transport_state_rolling() const
|
||||
return _transport_fsm->rolling();
|
||||
}
|
||||
|
||||
bool
|
||||
Session::transport_locating() const
|
||||
{
|
||||
return _transport_fsm->locating();
|
||||
}
|
||||
|
||||
bool
|
||||
Session::transport_rolling() const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user