log

age author description
Wed, 16 Oct 2019 15:26:01 +0100 Chris Cannam Avoid some compiler warnings
Wed, 16 Oct 2019 12:12:49 +0100 Chris Cannam Tidy
Mon, 14 Oct 2019 14:17:37 +0100 Chris Cannam Implement missing TabularModel editing methods. Also made these pure in TabularModel, since almost all subclasses want them and (clearly) forgetting to implement them is a problem!
Thu, 10 Oct 2019 10:03:31 +0100 Chris Cannam Make static to avoid multiple definitions
Thu, 10 Oct 2019 09:47:25 +0100 Chris Cannam One last fix to this compatibility function (I hope!)
Thu, 10 Oct 2019 09:34:12 +0100 Chris Cannam *sigh*
Thu, 10 Oct 2019 09:18:37 +0100 Chris Cannam OK, that didn't work because of scoping/overload rules. Try this
Thu, 10 Oct 2019 09:12:12 +0100 Chris Cannam Compatibility with Qt 5.2 (for the Ubuntu 14.04 build)
Tue, 01 Oct 2019 11:22:48 +0100 Chris Cannam Some work on making Model classes thread-safe in typical use - and documenting this. Some of the implementations are simpler now that EventSeries is thread-safe
Tue, 01 Oct 2019 11:21:56 +0100 Chris Cannam Fix compile error with non-MSVC compilers
Mon, 30 Sep 2019 20:28:03 +0100 Chris Cannam Make EventSeries threadsafe
Mon, 30 Sep 2019 12:36:44 +0100 Chris Cannam The copy & move operators are not actually being used, so probably safer to delete them unless we know otherwise - this is not all that simple a class
Wed, 25 Sep 2019 13:47:46 +0100 Chris Cannam Merge from branch time-frequency-boxes
Wed, 25 Sep 2019 11:06:59 +0100 Chris Cannam Add duration-and-extent type, which corresponds to a box model time-frequency-boxes
Wed, 25 Sep 2019 11:06:39 +0100 Chris Cannam Indentation only time-frequency-boxes
Wed, 25 Sep 2019 09:44:02 +0100 Chris Cannam Rename TimeFrequencyBoxModel to simply BoxModel time-frequency-boxes
Wed, 25 Sep 2019 09:43:34 +0100 Chris Cannam Some tidying time-frequency-boxes
Fri, 20 Sep 2019 14:18:38 +0100 Chris Cannam Fixes to export of time-frequency box model time-frequency-boxes
Fri, 20 Sep 2019 11:35:14 +0100 Chris Cannam Reorder fields to ensure consistency with older Image model code
Fri, 20 Sep 2019 11:35:14 +0100 Chris Cannam Reorder fields to ensure consistency with older Image model code time-frequency-boxes
Fri, 20 Sep 2019 11:24:47 +0100 Chris Cannam Ensure CSV-style export from time-freq box model is in the expected format time-frequency-boxes
Thu, 19 Sep 2019 15:17:56 +0100 Chris Cannam Introduce time-frequency box model time-frequency-boxes
Tue, 17 Sep 2019 11:21:33 +0100 Chris Cannam More graceful handling of failure to construct FFT models in the case where the source model has already been deleted before this occurs
Tue, 17 Sep 2019 10:42:55 +0100 Chris Cannam Fix calculation of binary name (don't include full path!)
Tue, 17 Sep 2019 09:28:27 +0100 Chris Cannam Lib dir name is usually the same as the binary name, not the formal application name
Mon, 16 Sep 2019 14:23:17 +0100 Chris Cannam Update helper dir path to look in equivalent of /usr/lib/xxxx on Linux
Thu, 12 Sep 2019 11:52:19 +0100 Chris Cannam Support optional max frequency setting, useful when we want to store caches of very constrained frequency ranges (as in melodic-range spectrogram, potentially)
Wed, 11 Sep 2019 13:20:40 +0100 Chris Cannam Update macOS memory size check - the original sysctl was returning far too small a value for modern machines (because bounded to a 32-bit int)
Wed, 11 Sep 2019 11:19:27 +0100 Chris Cannam Replace the model used for the cache part of the peak-cache model with a simple vector of vectors. Avoids unnecessary locking in a class that is not thread-safe in any case. Also record whether the final column is actually truncated, rather than risk possible backward seeks to re-read it in the case where it simply might be
Tue, 10 Sep 2019 16:34:47 +0100 Chris Cannam 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.