annotate transform/transform.pro @ 537:3cc4b7cd2aa5

* Merge from one-fftdataserver-per-fftmodel branch. This bit of reworking (which is not described very accurately by the title of the branch) turns the MatrixFile object into something that either reads or writes, but not both, and separates the FFT file cache reader and writer implementations separately. This allows the FFT data server to have a single thread owning writers and one reader per "customer" thread, and for all locking to be vastly simplified and concentrated in the data server alone (because none of the classes it makes use of is used in more than one thread at a time). The result is faster and more trustworthy code.
author Chris Cannam
date Tue, 27 Jan 2009 13:25:10 +0000
parents fdf5930b7ccc
children ebb6ac65bccc
rev   line source
Chris@395 1 TEMPLATE = lib
Chris@395 2
Chris@395 3 SV_UNIT_PACKAGES = vamp vamp-hostsdk
Chris@395 4 load(../sv.prf)
Chris@395 5
Chris@395 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions
Chris@395 7 QT += xml
Chris@395 8
Chris@395 9 TARGET = svtransform
Chris@395 10
Chris@395 11 DEPENDPATH += . ..
Chris@395 12 INCLUDEPATH += . ..
Chris@395 13 OBJECTS_DIR = tmp_obj
Chris@395 14 MOC_DIR = tmp_moc
Chris@395 15
Chris@395 16 # Input
Chris@498 17 HEADERS += CSVFeatureWriter.h \
Chris@498 18 FeatureExtractionModelTransformer.h \
Chris@498 19 FeatureWriter.h \
Chris@498 20 FileFeatureWriter.h \
Chris@395 21 RealTimeEffectModelTransformer.h \
Chris@395 22 Transform.h \
Chris@395 23 TransformDescription.h \
Chris@395 24 TransformFactory.h \
Chris@395 25 ModelTransformer.h \
Chris@395 26 ModelTransformerFactory.h
Chris@498 27 SOURCES += CSVFeatureWriter.cpp \
Chris@498 28 FeatureExtractionModelTransformer.cpp \
Chris@498 29 FileFeatureWriter.cpp \
Chris@395 30 RealTimeEffectModelTransformer.cpp \
Chris@395 31 Transform.cpp \
Chris@395 32 TransformFactory.cpp \
Chris@395 33 ModelTransformer.cpp \
Chris@395 34 ModelTransformerFactory.cpp