comparison rdf/RDFImporter.cpp @ 1777:d484490cdf69

Split EditableDenseThreeDimensionalModel into explicitly compressed and uncompressed variants. Simplifies the uncompressed version, and we may want to consider whether we need the compressed one at all.
author Chris Cannam
date Tue, 10 Sep 2019 16:34:47 +0100
parents 6d09d68165a4
children a454c7477b4f
comparison
equal deleted inserted replaced
1776:5750b9e60818 1777:d484490cdf69
357 models.push_back(ModelById::add(m)); 357 models.push_back(ModelById::add(m));
358 358
359 } else { 359 } else {
360 360
361 auto m = std::make_shared<EditableDenseThreeDimensionalModel> 361 auto m = std::make_shared<EditableDenseThreeDimensionalModel>
362 (sampleRate, hopSize, height, 362 (sampleRate, hopSize, height, false);
363 EditableDenseThreeDimensionalModel::NoCompression, false);
364 363
365 EditableDenseThreeDimensionalModel::Column column; 364 EditableDenseThreeDimensionalModel::Column column;
366 365
367 int x = 0; 366 int x = 0;
368 367