mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
add direct access API for transportFSM and session transport speed
This commit is contained in:
parent
9f8b8d192b
commit
86b23c0f19
2 changed files with 2 additions and 0 deletions
|
|
@ -1248,6 +1248,7 @@ protected:
|
|||
void post_locate ();
|
||||
void schedule_butler_for_transport_work ();
|
||||
bool should_roll_after_locate () const;
|
||||
double speed() const { return _transport_speed; }
|
||||
|
||||
private:
|
||||
int create (const std::string& mix_template, BusProfile*);
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ class LIBARDOUR_API TransportAPI
|
|||
virtual void butler_completed_transport_work () = 0;
|
||||
virtual void schedule_butler_for_transport_work () = 0;
|
||||
virtual bool should_roll_after_locate () const = 0;
|
||||
virtual double speed() const = 0;
|
||||
};
|
||||
|
||||
} /* end namespace ARDOUR */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue