13
0

add direct access API for transportFSM and session transport speed

This commit is contained in:
Paul Davis 2019-09-22 11:49:59 -06:00
parent 9f8b8d192b
commit 86b23c0f19
2 changed files with 2 additions and 0 deletions

View File

@ -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*);

View File

@ -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 */