summaryrefslogtreecommitdiff
path: root/libs/ardour/tempo.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-11-08 22:49:23 +0100
committerRobin Gareus <robin@gareus.org>2019-11-08 22:49:23 +0100
commit5daa0fca7c97b5b709ed2eb4ecc5259d814c632e (patch)
tree32b2c1f0ca92f28e79f58a466c43ae9a5929babb /libs/ardour/tempo.cc
parent240e3e8dc06d980e4262155b49f487e158370877 (diff)
Fix tempo-grid calculation: prevent duplicate events, enforce range
Diffstat (limited to 'libs/ardour/tempo.cc')
-rw-r--r--libs/ardour/tempo.cc23
1 files changed, 16 insertions, 7 deletions
diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc
index e24d21ef6b..77f7265717 100644
--- a/libs/ardour/tempo.cc
+++ b/libs/ardour/tempo.cc
@@ -4139,7 +4139,6 @@ TempoMap::get_grid (vector<TempoMap::BBTPoint>& points,
{
Glib::Threads::RWLock::ReaderLock lm (lock);
int32_t cnt = ceil (beat_at_minute_locked (_metrics, minute_at_sample (lower)));
- samplecnt_t pos = 0;
/* although the map handles negative beats, bbt doesn't. */
if (cnt < 0.0) {
cnt = 0.0;
@@ -4149,13 +4148,18 @@ TempoMap::get_grid (vector<TempoMap::BBTPoint>& points,
return;
}
if (bar_mod == 0) {
- while (pos >= 0 && pos < upper) {
- pos = sample_at_minute (minute_at_beat_locked (_metrics, cnt));
+ while (true) {
+ samplecnt_t pos = sample_at_minute (minute_at_beat_locked (_metrics, cnt));
+ if (pos >= upper) {
+ break;
+ }
const MeterSection meter = meter_section_at_minute_locked (_metrics, minute_at_sample (pos));
const BBT_Time bbt = bbt_at_beat_locked (_metrics, cnt);
const double qn = pulse_at_beat_locked (_metrics, cnt) * 4.0;
- points.push_back (BBTPoint (meter, tempo_at_minute_locked (_metrics, minute_at_sample (pos)), pos, bbt.bars, bbt.beats, qn));
+ if (pos >= lower) {
+ points.push_back (BBTPoint (meter, tempo_at_minute_locked (_metrics, minute_at_sample (pos)), pos, bbt.bars, bbt.beats, qn));
+ }
++cnt;
}
} else {
@@ -4168,12 +4172,17 @@ TempoMap::get_grid (vector<TempoMap::BBTPoint>& points,
++bbt.bars;
}
- while (pos >= 0 && pos < upper) {
- pos = sample_at_minute (minute_at_bbt_locked (_metrics, bbt));
+ while (true) {
+ samplecnt_t pos = sample_at_minute (minute_at_bbt_locked (_metrics, bbt));
+ if (pos >= upper) {
+ break;
+ }
const MeterSection meter = meter_section_at_minute_locked (_metrics, minute_at_sample (pos));
const double qn = pulse_at_bbt_locked (_metrics, bbt) * 4.0;
- points.push_back (BBTPoint (meter, tempo_at_minute_locked (_metrics, minute_at_sample (pos)), pos, bbt.bars, bbt.beats, qn));
+ if (pos >= lower) {
+ points.push_back (BBTPoint (meter, tempo_at_minute_locked (_metrics, minute_at_sample (pos)), pos, bbt.bars, bbt.beats, qn));
+ }
bbt.bars += bar_mod;
}
}