Mercurial > hg > sonic-visualiser
comparison rubberband-all.cpp @ 2145:b35c1f8b2ddd fix-static-analysis
Merge from default branch
author | Chris Cannam |
---|---|
date | Tue, 04 Dec 2018 13:53:59 +0000 |
parents | 7df49445017d |
children | 16315742840b |
comparison
equal
deleted
inserted
replaced
2127:292f6cc6b65e | 2145:b35c1f8b2ddd |
---|---|
1 | |
2 #pragma GCC diagnostic ignored "-Wconversion" | |
3 #pragma GCC diagnostic ignored "-Wfloat-conversion" | |
4 #pragma GCC diagnostic ignored "-Wunused-parameter" | |
5 #pragma GCC diagnostic ignored "-Wunused-variable" | |
6 #pragma GCC diagnostic ignored "-Wunused-value" | |
7 #pragma GCC diagnostic ignored "-Wsign-compare" | |
8 | |
9 #define USE_KISSFFT 1 | |
10 #define USE_SPEEX 1 | |
11 | |
12 #ifdef _MSC_VER | |
13 #define __MSVC__ | |
14 #endif | |
15 | |
16 #include "rubberband/src/rubberband-c.cpp" | |
17 #include "rubberband/src/RubberBandStretcher.cpp" | |
18 #include "rubberband/src/StretcherProcess.cpp" | |
19 #include "rubberband/src/StretchCalculator.cpp" | |
20 #include "rubberband/src/dsp/AudioCurveCalculator.cpp" | |
21 #include "rubberband/src/base/Profiler.cpp" | |
22 #include "rubberband/src/audiocurves/CompoundAudioCurve.cpp" | |
23 #include "rubberband/src/audiocurves/SpectralDifferenceAudioCurve.cpp" | |
24 #include "rubberband/src/audiocurves/HighFrequencyAudioCurve.cpp" | |
25 #include "rubberband/src/audiocurves/SilentAudioCurve.cpp" | |
26 #include "rubberband/src/audiocurves/ConstantAudioCurve.cpp" | |
27 #include "rubberband/src/audiocurves/PercussiveAudioCurve.cpp" | |
28 #include "rubberband/src/dsp/Resampler.cpp" | |
29 #include "rubberband/src/dsp/FFT.cpp" | |
30 #include "rubberband/src/system/Allocators.cpp" | |
31 #include "rubberband/src/system/sysutils.cpp" | |
32 #include "rubberband/src/system/Thread.cpp" | |
33 #include "rubberband/src/StretcherChannelData.cpp" | |
34 #include "rubberband/src/StretcherImpl.cpp" | |
35 #include "rubberband/src/kissfft/kiss_fft.c" | |
36 #include "rubberband/src/kissfft/kiss_fftr.c" | |
37 #include "rubberband/src/speex/resample.c" | |
38 | |
39 |