Is there documentation on clap_event_transport #164
-
Specifically there is this in events.h: clap_beattime song_pos_beats; // position in beats clap_beattime is defined as int64_t. So song_pos_beats is a 64 bit integer. What are the units of measurement? With VST2 it was a double and at least documented as "Musical Position, in Quarter Note (1.0 equals 1 Quarter Note)" Can anyone help me here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There's a comment on how to use these fixed point numbers just above that definition for clap/include/clap/fixedpoint.h Lines 6 to 16 in af1e05c And the length of a beat is determined by the tempo. So at a tempo of 174 beats per minute, a beat takes |
Beta Was this translation helpful? Give feedback.
There's a comment on how to use these fixed point numbers just above that definition for
clap_beattime
:clap/include/clap/fixedpoint.h
Lines 6 to 16 in af1e05c
And the length of a beat is determined by the tempo. So at a tempo of 174 bea…