log data/model/WritableWaveFileModel.cpp @ 1675:6804af71b7be osc-script

age author description
2019-03-27 Chris Cannam Rework isReady()/getCompletion() on models. Previously the new overhauled models were implementing getCompletion() but inheriting a version of isReady() (from the Model base) that didn't call it, referring only to isOK(). So they were reporting completion as soon as they had begun. Instead hoist getCompletion() to abstract base and call it from Model::isReady(). single-point
2018-11-26 Chris Cannam Use nullptr throughout fix-static-analysis
2018-09-12 Chris Cannam Switch the normalisation option in WritableWaveFileModel from normalising on read to normalising on write, so that the saved file is already normalised and therefore can be read again without having to remember to normalise it import-audio-data
2018-09-08 Chris Cannam Handle sample range specification for CSV import import-audio-data
2018-05-15 Chris Cannam Fix some compiler warnings
2018-03-01 Chris Cannam Untabify
2018-03-01 Chris Cannam Convert some cerrs to SVCERRs. Apart from anything else, this makes MSVC2017 happy
2017-01-04 Chris Cannam Make writable model updating explicit rather than essentially an arbitrary hidden accident 3.0-integration
2017-01-04 Chris Cannam Close wave file writer when recording stops (instead of leaving record file unclosed until the model is deleted) 3.0-integration
2016-12-13 Chris Cannam Update to use bqvec allocator for float vectors 3.0-integration
2016-12-13 Chris Cannam Handle increases in the overall channel count by closing and reopening the audio device. 3.0-integration
2015-10-13 Chris Cannam Adjust model update during recording or writing a new wave file. Formerly we were using the model's completion percentage to indicate write proportion and completion -- that's not a good idea because some layers will reasonably avoid rendering at all until a model reaches 100% completion (it's supposed to report only progress on the initial model generation, and the model shouldn't change during completion updates). tony-2.0-integration
2015-08-20 Chris Cannam Merge from branch recording 3.0-integration
2015-08-20 Chris Cannam Fix reloading session with recorded audio recording
2015-08-19 Chris Cannam Make WritableWaveFileModel a true WaveFileModel (and ReadOnlyWaveFileModel the other sort of it). Enable recording from an empty session using that. recording
2015-06-15 Chris Cannam Rework audio file reader API to prefer using std containers simple-fft-model
2015-06-10 Chris Cannam Tidy dense time-value model API a bit; add first simple unit test for FFT model
2015-03-31 Chris Cannam clone() is never used (therefore presumably never works either) tonioni
2015-03-04 Chris Cannam Introduce and use a samplerate type cxx11
2015-03-03 Chris Cannam Introducing the signed 64-bit frame index type, and fixing build failures from inclusion of -Wconversion with -Werror. Not finished yet. cxx11
2014-07-17 Chris Cannam Fix some errant signals (the modelChanged with args are now modelChangedWithin)
2014-06-17 Chris Cannam Unsigned removals and warning fixes in data/ warnfix_no_size_t
2013-11-26 Chris Cannam Drop std:: from cout, cerr, endl -- pull these in through Debug.h
2012-03-05 Chris Cannam Patch for compilation with gcc-4.7, from Michel Alexandre Salim
2011-06-14 Chris Cannam Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
2011-06-14 Chris Cannam Merge from debug-output branch
2011-05-16 Chris Cannam Convert many cerrs to DEBUGs debug-output
2011-05-12 Chris Cannam Remove most toStdString calls (no longer needed, with debug header) debug-output
2011-05-11 Chris Cannam Provide option for WavFileWriter to write directly to target file, rather than always using a temporary; make use of it in WritableWaveFileModel so we can read from target file without having to close it first
2009-09-08 Chris Cannam * Fix session save bug reported by Jeff Smith (entities not encoded in
2008-02-27 Chris Cannam * merge from trunk (1.2 ended up being tracked from trunk, but we may want 1.2-stable
2008-02-07 Chris Cannam * Ensure waveforms are strictly correct even when using a non-power-of-two
2008-01-24 Chris Cannam * Add wave file model method for reading more than one channel at once,
2007-10-18 Chris Cannam * RemoteFile -> FileSource
2007-10-18 Chris Cannam * Make RemoteFile far more pervasive, and use it for local files as well
2007-10-18 Chris Cannam * Make XmlExportable::toXml the function that is universally overridden (and
2007-10-01 Chris Cannam * Change WaveFileModel API from getValues(start,end) to getData(start,count).
2007-08-24 Chris Cannam * Revert revision 713. We do like QStrings after all.
2007-08-14 Chris Cannam * Fix #1757772 tempo, dynamic related plug-ins bug -- make auto-align
2007-08-09 Chris Cannam * change some QStrings to std::strings etc
2007-04-30 Chris Cannam * Fix #1706924 updates not happening on derived waveform generation
2007-02-07 Chris Cannam * Return ranges from RangeSummarisableTimeValueModel::getRanges by references
2006-11-17 Chris Cannam * Update copyright notes as appropriate.
2006-10-13 Chris Cannam * Simplify maker names in plugin menu
2006-10-12 Chris Cannam * Fixes to update logic in writable wave file model
2006-10-05 Chris Cannam ...
2006-10-03 Chris Cannam * Some fixes to updating of writable wave file models
2006-10-03 Chris Cannam * Introduce WritableWaveFileModel, and use it as an output model for audio