view plugin/plugin.pro @ 264:260032c26c4f

* 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 9c85517ff0f5
children 32e50b620a6c
line wrap: on
line source
TEMPLATE = lib

SV_UNIT_PACKAGES = vamp vamp-hostsdk lrdf raptor
load(../sv.prf)

CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
QT += xml

TARGET = svplugin

# Doesn't work with this library, which contains C99 as well as C++
PRECOMPILED_HEADER =

DEPENDPATH += . .. api plugins api/alsa api/alsa/sound
INCLUDEPATH += . .. api api/alsa plugins api/alsa/sound
OBJECTS_DIR = tmp_obj
MOC_DIR = tmp_moc

# Input
HEADERS += DSSIPluginFactory.h \
           DSSIPluginInstance.h \
           FeatureExtractionPluginFactory.h \
           LADSPAPluginFactory.h \
           LADSPAPluginInstance.h \
           PluginIdentifier.h \
           PluginXml.h \
           RealTimePluginFactory.h \
           RealTimePluginInstance.h \
           api/dssi.h \
           api/ladspa.h \
           plugins/SamplePlayer.h \
           api/alsa/asoundef.h \
           api/alsa/asoundlib.h \
           api/alsa/seq.h \
           api/alsa/seq_event.h \
           api/alsa/seq_midi_event.h \
           api/alsa/sound/asequencer.h
SOURCES += DSSIPluginFactory.cpp \
           DSSIPluginInstance.cpp \
           FeatureExtractionPluginFactory.cpp \
           LADSPAPluginFactory.cpp \
           LADSPAPluginInstance.cpp \
           PluginIdentifier.cpp \
           PluginXml.cpp \
           RealTimePluginFactory.cpp \
           RealTimePluginInstance.cpp \
           api/dssi_alsa_compat.c \
           plugins/SamplePlayer.cpp