summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/tempo.h
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-05-03 03:31:27 +1000
committernick_m <mainsbridge@gmail.com>2016-05-27 23:38:16 +1000
commit992fc6b5102df03edeb3d33a3c2557b49532c0ae (patch)
treec560ecaab4fd1cd3fb46be8be1892e65bc7ff08c /libs/ardour/ardour/tempo.h
parent3c76fa9dd1887603f28e57bed5883a4814a6d782 (diff)
Tempo ramps - music-locked meter drags are now bbt based.
Diffstat (limited to 'libs/ardour/ardour/tempo.h')
-rw-r--r--libs/ardour/ardour/tempo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/tempo.h b/libs/ardour/ardour/tempo.h
index eb6eeb3a50..87023e0cd8 100644
--- a/libs/ardour/ardour/tempo.h
+++ b/libs/ardour/ardour/tempo.h
@@ -396,7 +396,7 @@ class LIBARDOUR_API TempoMap : public PBD::StatefulDestructible
void gui_move_tempo_beat (TempoSection*, const double& beat);
void gui_move_tempo_pulse (TempoSection*, const double& pulse);
void gui_move_meter (MeterSection*, const framepos_t& frame);
- void gui_move_meter (MeterSection*, const double& pulse);
+ void gui_move_meter (MeterSection*, const Timecode::BBT_Time& bbt);
bool gui_change_tempo (TempoSection*, const Tempo& bpm);
void gui_dilate_tempo (MeterSection*, const framepos_t& frame);
@@ -408,7 +408,7 @@ class LIBARDOUR_API TempoMap : public PBD::StatefulDestructible
framepos_t round_to_bar (framepos_t frame, RoundMode dir);
framepos_t round_to_beat (framepos_t frame, RoundMode dir);
framepos_t round_to_beat_subdivision (framepos_t fr, int sub_num, RoundMode dir);
- void round_bbt (Timecode::BBT_Time& when, const int32_t& snap_divisor);
+ void round_bbt (Timecode::BBT_Time& when, const int32_t& snap_divisor, RoundMode dir);
void set_length (framepos_t frames);
@@ -477,7 +477,7 @@ private:
bool solve_map (Metrics& metrics, TempoSection* section, const framepos_t& frame);
bool solve_map (Metrics& metrics, TempoSection* section, const double& pulse);
bool solve_map (Metrics& metrics, MeterSection* section, const framepos_t& frame);
- bool solve_map (Metrics& metrics, MeterSection* section, const double& pulse);
+ bool solve_map (Metrics& metrics, MeterSection* section, const Timecode::BBT_Time& bbt);
friend class ::BBTTest;
friend class ::FrameposPlusBeatsTest;