annotate qm-dsp.pro @ 285:c88fb48790d9

* Add wavelet filters from Thomas Wilmering
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 02 Apr 2009 11:17:45 +0000
parents dd676f01bb15
children d5b6b88e2025
rev   line source
c@225 1 TEMPLATE = lib
c@284 2 CONFIG += warn_on staticlib release
c@230 3 CONFIG -= qt
c@225 4 OBJECTS_DIR = tmp_obj
c@225 5 MOC_DIR = tmp_moc
c@226 6
c@284 7 linux-g++*:QMAKE_CXXFLAGS_RELEASE += -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -msse2 -ftree-vectorize -fomit-frame-pointer
c@277 8
c@277 9 linux-g++-64:INCLUDEPATH += ../qm-vamp-plugins/build/linux/amd64
c@254 10
c@270 11 macx-g++:QMAKE_CXXFLAGS_RELEASE += -fvisibility=hidden
c@270 12
c@232 13 #DEPENDPATH += base \
c@232 14 # dsp/chromagram \
c@232 15 # dsp/keydetection \
c@232 16 # dsp/maths \
c@232 17 # dsp/onsets \
c@232 18 # dsp/phasevocoder \
c@232 19 # dsp/rateconversion \
c@232 20 # dsp/signalconditioning \
c@232 21 # dsp/tempotracking \
c@232 22 # dsp/tonal \
c@232 23 # dsp/transforms
c@269 24
c@269 25 #INCLUDEPATH += . include
c@269 26 INCLUDEPATH += .
c@225 27
c@225 28 # Input
c@225 29 HEADERS += base/Pitch.h \
c@225 30 base/Window.h \
c@225 31 dsp/chromagram/Chromagram.h \
c@225 32 dsp/chromagram/ChromaProcess.h \
c@225 33 dsp/chromagram/ConstantQ.h \
c@232 34 dsp/keydetection/GetKeyMode.h \
c@251 35 dsp/mfcc/MFCC.h \
c@225 36 dsp/onsets/DetectionFunction.h \
c@225 37 dsp/onsets/PeakPicking.h \
c@225 38 dsp/phasevocoder/PhaseVocoder.h \
c@225 39 dsp/rateconversion/Decimator.h \
c@256 40 dsp/rhythm/BeatSpectrum.h \
c@245 41 dsp/segmentation/cluster_melt.h \
c@245 42 dsp/segmentation/ClusterMeltSegmenter.h \
c@245 43 dsp/segmentation/cluster_segmenter.h \
c@245 44 dsp/segmentation/SavedFeatureSegmenter.h \
c@245 45 dsp/segmentation/Segmenter.h \
c@245 46 dsp/segmentation/segment.h \
c@225 47 dsp/signalconditioning/DFProcess.h \
c@225 48 dsp/signalconditioning/Filter.h \
c@225 49 dsp/signalconditioning/FiltFilt.h \
c@225 50 dsp/signalconditioning/Framer.h \
c@279 51 dsp/tempotracking/DownBeat.h \
c@225 52 dsp/tempotracking/TempoTrack.h \
c@277 53 dsp/tempotracking/TempoTrackV2.h \
c@225 54 dsp/tonal/ChangeDetectionFunction.h \
c@225 55 dsp/tonal/TCSgram.h \
c@225 56 dsp/tonal/TonalEstimator.h \
c@241 57 dsp/transforms/FFT.h \
c@285 58 dsp/wavelet/Wavelet.h \
c@244 59 hmm/hmm.h \
c@241 60 maths/Correlation.h \
c@256 61 maths/CosineDistance.h \
c@241 62 maths/Histogram.h \
c@256 63 maths/KLDivergence.h \
c@241 64 maths/MathAliases.h \
c@241 65 maths/MathUtilities.h \
c@242 66 maths/Polyfit.h \
c@244 67 maths/pca/pca.h
c@225 68 SOURCES += base/Pitch.cpp \
c@225 69 dsp/chromagram/Chromagram.cpp \
c@225 70 dsp/chromagram/ChromaProcess.cpp \
c@225 71 dsp/chromagram/ConstantQ.cpp \
c@232 72 dsp/keydetection/GetKeyMode.cpp \
c@251 73 dsp/mfcc/MFCC.cpp \
c@225 74 dsp/onsets/DetectionFunction.cpp \
c@225 75 dsp/onsets/PeakPicking.cpp \
c@225 76 dsp/phasevocoder/PhaseVocoder.cpp \
c@225 77 dsp/rateconversion/Decimator.cpp \
c@256 78 dsp/rhythm/BeatSpectrum.cpp \
c@245 79 dsp/segmentation/cluster_melt.c \
c@245 80 dsp/segmentation/ClusterMeltSegmenter.cpp \
c@245 81 dsp/segmentation/cluster_segmenter.c \
c@245 82 dsp/segmentation/SavedFeatureSegmenter.cpp \
c@245 83 dsp/segmentation/Segmenter.cpp \
c@225 84 dsp/signalconditioning/DFProcess.cpp \
c@225 85 dsp/signalconditioning/Filter.cpp \
c@225 86 dsp/signalconditioning/FiltFilt.cpp \
c@225 87 dsp/signalconditioning/Framer.cpp \
c@279 88 dsp/tempotracking/DownBeat.cpp \
c@225 89 dsp/tempotracking/TempoTrack.cpp \
c@277 90 dsp/tempotracking/TempoTrackV2.cpp \
c@225 91 dsp/tonal/ChangeDetectionFunction.cpp \
c@225 92 dsp/tonal/TCSgram.cpp \
c@225 93 dsp/tonal/TonalEstimator.cpp \
c@241 94 dsp/transforms/FFT.cpp \
c@285 95 dsp/wavelet/Wavelet.cpp \
c@244 96 hmm/hmm.c \
c@241 97 maths/Correlation.cpp \
c@256 98 maths/CosineDistance.cpp \
c@256 99 maths/KLDivergence.cpp \
c@242 100 maths/MathUtilities.cpp \
c@244 101 maths/pca/pca.c