Mercurial > hg > svgui
view layer/layer.pro @ 252:8d89f8869cfb
* don't store fft values scaled by fftsize/2; that's a special requirement
for the spectrogram, and other applications will not expect it -- make the
spectrogram do that scaling itself
* add a higher-resolution memory cache (still polar, though) as an alternative
to the 16-bit compact cache
* don't use the memory cache if we want rectangular coords (unless the disc
cache is totally infeasible) as conversion slows it down anyway
* avoid redundant rectangular -> polar -> rectangular conversion when storing
values in a rectangular-mode disc cache
author | Chris Cannam |
---|---|
date | Fri, 01 Jun 2007 13:56:35 +0000 |
parents | cec1f78fbfca |
children | b9380f679f70 |
line wrap: on
line source
TEMPLATE = lib SV_UNIT_PACKAGES = fftw3f load(../sv.prf) CONFIG += sv staticlib qt thread warn_on stl rtti exceptions QT += xml TARGET = svlayer DEPENDPATH += . .. INCLUDEPATH += . .. OBJECTS_DIR = tmp_obj MOC_DIR = tmp_moc # Input HEADERS += Colour3DPlotLayer.h \ ColourMapper.h \ Layer.h \ LayerFactory.h \ NoteLayer.h \ PaintAssistant.h \ SpectrogramLayer.h \ SpectrumLayer.h \ SliceLayer.h \ SliceableLayer.h \ TextLayer.h \ TimeInstantLayer.h \ TimeRulerLayer.h \ TimeValueLayer.h \ WaveformLayer.h SOURCES += Colour3DPlotLayer.cpp \ ColourMapper.cpp \ Layer.cpp \ LayerFactory.cpp \ NoteLayer.cpp \ PaintAssistant.cpp \ SpectrogramLayer.cpp \ SpectrumLayer.cpp \ SliceLayer.cpp \ TextLayer.cpp \ TimeInstantLayer.cpp \ TimeRulerLayer.cpp \ TimeValueLayer.cpp \ WaveformLayer.cpp