Mercurial > hg > svcore
diff transform/FeatureExtractionModelTransformer.cpp @ 1090:420fc961c0c4 simple-fft-model
Gut the old code, but don't replace it yet (so nothing will link yet)
author | Chris Cannam |
---|---|
date | Fri, 12 Jun 2015 14:51:46 +0100 |
parents | 9f4505ac9072 |
children | 4d9816ba0ebe |
line wrap: on
line diff
--- a/transform/FeatureExtractionModelTransformer.cpp Fri Jun 12 13:46:44 2015 +0100 +++ b/transform/FeatureExtractionModelTransformer.cpp Fri Jun 12 14:51:46 2015 +0100 @@ -606,9 +606,7 @@ primaryTransform.getWindowType(), blockSize, stepSize, - blockSize, - false, - StorageAdviser::PrecisionCritical); + blockSize); if (!model->isOK() || model->getError() != "") { QString err = model->getError(); delete model; @@ -618,7 +616,6 @@ //!!! need a better way to handle this -- previously we were using a QMessageBox but that isn't an appropriate thing to do here either throw AllocationFailed("Failed to create the FFT model for this feature extraction model transformer: error is: " + err); } - model->resume(); fftModels.push_back(model); cerr << "created model for channel " << ch << endl; }