"Combine" processing for BPMs and stops.

Prep for replacing with new negative-converting algorithm.
This commit is contained in:
Devin J. Pohly
2013-05-17 16:43:53 -04:00
parent 785cff2abc
commit c04553846a
4 changed files with 23 additions and 14 deletions
+8
View File
@@ -96,6 +96,14 @@ struct SMLoader
* @param vStops the vector of Stops data. */
void ProcessStops(TimingData & out,
const vector< pair<float, float> > &vStops);
/**
* @brief Process BPM and stop segments from the data.
* @param out the TimingData being modified.
* @param vBPMs the vector of BPM changes.
* @param vStops the vector of stops. */
void ProcessBPMsAndStops(TimingData &out,
const vector< pair<float, float> > &vBPMs,
const vector< pair<float, float> > &vStops);
/**
* @brief Process the Delay Segments from the string.
* @param out the TimingData being modified.