|
|
@@ -1184,11 +1184,12 @@ public: |
|
|
|
CARLA_SAFE_ASSERT_INT(timeInfo.bbt.beat > 0, timeInfo.bbt.beat); |
|
|
|
|
|
|
|
const double ppqBar = static_cast<double>(timeInfo.bbt.beatsPerBar) * (timeInfo.bbt.bar - 1); |
|
|
|
const double ppqBeat = static_cast<double>(timeInfo.bbt.beat - 1); |
|
|
|
const double ppqTick = timeInfo.bbt.tick / timeInfo.bbt.ticksPerBeat; |
|
|
|
// const double ppqBeat = static_cast<double>(timeInfo.bbt.beat - 1); |
|
|
|
// const double ppqTick = timeInfo.bbt.tick / timeInfo.bbt.ticksPerBeat; |
|
|
|
|
|
|
|
// PPQ Pos |
|
|
|
fTimeInfo.ppqPos = ppqBar + ppqBeat + ppqTick; |
|
|
|
fTimeInfo.ppqPos = fTimeInfo.samplePos / (fTimeInfo.sampleRate * 60 / fTimeInfo.tempo); |
|
|
|
// fTimeInfo.ppqPos = ppqBar + ppqBeat + ppqTick; |
|
|
|
fTimeInfo.flags |= kVstPpqPosValid; |
|
|
|
|
|
|
|
// Tempo |
|
|
|