# HG changeset patch # User Chris Cannam # Date 1161092971 0 # Node ID 86766fef54672f12b2fc0ad28bdcdfa0ad274ccb # Parent 60ba218a54bb4397ce4e2b6bbdb4f92e889629d8 * Fix slowness in serving FFT values to feature extraction plugin transform (failure to call resume() on FFT model) * Fix failure to update completion from time/value model diff -r 60ba218a54bb -r 86766fef5467 data/model/SparseModel.h --- a/data/model/SparseModel.h Mon Oct 16 20:42:23 2006 +0000 +++ b/data/model/SparseModel.h Tue Oct 17 13:49:31 2006 +0000 @@ -508,6 +508,8 @@ void SparseModel::setCompletion(int completion) { +// std::cerr << "SparseModel::setCompletion(" << completion << ")" << std::endl; + if (m_completion != completion) { m_completion = completion;