abl_link_tempo method

double abl_link_tempo(
  1. abl_link_session_state session_state
)

! @brief: The tempo of the timeline, in Beats Per Minute.

@discussion This is a stable value that is appropriate for display to the user. Beat time progress will not necessarily match this tempo exactly because of clock drift compensation.

Implementation

double abl_link_tempo(
  abl_link_session_state session_state,
) {
  return _abl_link_tempo(
    session_state,
  );
}