-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathloudia.pro
116 lines (116 loc) · 2.74 KB
/
loudia.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
CONFIG -= qt \
gui \
core
TEMPLATE = lib
HEADERS += src/Window.h \
src/VoiceActivityDetection.h \
src/Utils.h \
src/Unwrap.h \
src/Typedefs.h \
src/SpectralWhitening.h \
src/SpectralReassignment.h \
src/SpectralODFPhase.h \
src/SpectralODFMKL.h \
src/SpectralODFHFC.h \
src/SpectralODFFlux.h \
src/SpectralODFComplex.h \
src/SpectralODFCOG.h \
src/SpectralODFBase.h \
src/SpectralODF.h \
src/SpectralNoiseSuppression.h \
src/Resample.h \
src/PitchSaliency.h \
src/PitchInverseProblem.h \
src/PitchACF.h \
src/PeakTracking.h \
src/PeakSynthesize.h \
src/PeakInterpolationComplex.h \
src/PeakInterpolation.h \
src/PeakDetectionComplex.h \
src/PeakDetection.h \
src/PeakCOG.h \
src/OnsetComplex.h \
src/NMF.h \
src/MFCC.h \
src/MelScales.h \
src/MelBands.h \
src/Meddis.h \
src/MatrixBaseAddons.h \
src/LPCResidual.h \
src/LPC.h \
src/INMF.h \
src/IFFTComplex.h \
src/IFFT.h \
src/FunctorsAddons.h \
src/FrameCutter.h \
src/FilterUtils.h \
src/Filter.h \
src/FFTComplex.h \
src/FFT.h \
src/Debug.h \
src/DCT.h \
src/CwiseAddons.h \
src/Correlation.h \
src/BarkBands.h \
src/Bands.h \
src/BandFilter.h \
src/Autocorrelation.h \
src/AudioLoader.h \
src/AOK.h
SOURCES += src/Window.cpp \
src/VoiceActivityDetection.cpp \
src/Utils.cpp \
src/Unwrap.cpp \
src/SpectralWhitening.cpp \
src/SpectralReassignment.cpp \
src/SpectralODFPhase.cpp \
src/SpectralODFMKL.cpp \
src/SpectralODFHFC.cpp \
src/SpectralODFFlux.cpp \
src/SpectralODFComplex.cpp \
src/SpectralODFCOG.cpp \
src/SpectralODFBase.cpp \
src/SpectralODF.cpp \
src/SpectralNoiseSuppression.cpp \
src/Resample.cpp \
src/PitchSaliency.cpp \
src/PitchInverseProblem.cpp \
src/PitchACF.cpp \
src/PeakTracking.cpp \
src/PeakSynthesize.cpp \
src/PeakInterpolationComplex.cpp \
src/PeakInterpolation.cpp \
src/PeakDetectionComplex.cpp \
src/PeakDetection.cpp \
src/PeakCOG.cpp \
src/OnsetComplex.cpp \
src/NMF.cpp \
src/MFCC.cpp \
src/MelScales.cpp \
src/MelBands.cpp \
src/Meddis.cpp \
src/LPCResidual.cpp \
src/LPC.cpp \
src/INMF.cpp \
src/IFFTComplex.cpp \
src/IFFT.cpp \
src/FrameCutter.cpp \
src/FilterUtils.cpp \
src/Filter.cpp \
src/FFTComplex.cpp \
src/FFT.cpp \
src/DCT.cpp \
src/Correlation.cpp \
src/BarkBands.cpp \
src/Bands.cpp \
src/BandFilter.cpp \
src/Autocorrelation.cpp \
src/AudioLoader.cpp \
src/AOK.cpp
LIBS += -lfftw3f \
-lavcodec \
-lavutil \
-lavformat \
-lsamplerate
INCLUDEPATH += ../eigen \
src