Mercurial > hg > svcore
diff data/model/AlignmentModel.cpp @ 1869:cb9209ef373a startup-timing
Merge from default branch
author | Chris Cannam |
---|---|
date | Tue, 16 Jun 2020 17:44:06 +0100 |
parents | 3072aa267248 |
children |
line wrap: on
line diff
--- a/data/model/AlignmentModel.cpp Wed Jun 03 13:57:50 2020 +0100 +++ b/data/model/AlignmentModel.cpp Tue Jun 16 17:44:06 2020 +0100 @@ -29,7 +29,8 @@ m_reversePath(nullptr), m_pathBegun(false), m_pathComplete(false), - m_relativePitch(0) + m_relativePitch(0), + m_explicitlySetCompletion(-1) { setPathFrom(pathSource); @@ -105,6 +106,10 @@ bool AlignmentModel::isReady(int *completion) const { + if (m_explicitlySetCompletion != -1) { + if (completion) *completion = m_explicitlySetCompletion; + return (m_explicitlySetCompletion == 100); + } if (!m_pathBegun && !m_pathSource.isNone()) { if (completion) *completion = 0; #ifdef DEBUG_ALIGNMENT_MODEL @@ -156,6 +161,13 @@ return m_aligned; } +void +AlignmentModel::setCompletion(int completion) +{ + m_explicitlySetCompletion = completion; + emit completionChanged(getId()); +} + sv_frame_t AlignmentModel::toReference(sv_frame_t frame) const { @@ -310,9 +322,9 @@ AlignmentModel::performAlignment(const Path &path, sv_frame_t frame) const { // The path consists of a series of points, each with frame equal - // to the frame on the source model and mapframe equal to the - // frame on the target model. Both should be monotonically - // increasing. + // to the frame on the source model (aligned model) and mapframe + // equal to the frame on the target model (reference model). Both + // should be monotonically increasing. const Path::Points &points = path.getPoints();