* Remove dependency on the actual stored object type in MatrixFile
* Add alternative Compact storage format for FFTFileCache (16-bit instead
of 32-bit)
| author |
Chris Cannam |
| date |
Wed, 12 Jul 2006 14:15:46 +0000 |
| parents |
e4acb520ad2a |
| children |
6332e41c1619 |
| files |
base/FFTCache.h base/Preferences.cpp |
| diffstat |
2 files changed, 2 insertions(+), 2 deletions(-)
[+]
|
line diff
--- a/base/FFTCache.h Mon Jul 10 13:54:49 2006 +0000
+++ b/base/FFTCache.h Wed Jul 12 14:15:46 2006 +0000
@@ -126,7 +126,7 @@
}
}
- virtual bool haveSetColumnAt(size_t x) const {
+ virtual bool haveSetColumnAt(size_t) const {
return true;
}
--- a/base/Preferences.cpp Mon Jul 10 13:54:49 2006 +0000
+++ b/base/Preferences.cpp Wed Jul 12 14:15:46 2006 +0000
@@ -19,7 +19,7 @@
Preferences::m_instance = new Preferences();
Preferences::Preferences() :
- m_smoothSpectrogram(false),
+ m_smoothSpectrogram(true),
m_tuningFrequency(440)
{
}