1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-25 23:51:35 +01:00

Remove naked new[] in: tracks

This commit is contained in:
Paul Licameli
2016-04-14 12:17:59 -04:00
parent 2b23667211
commit 18be1bdad6
8 changed files with 62 additions and 107 deletions

View File

@@ -12,6 +12,7 @@ Paul Licameli
#define __AUDACITY_SPECTROGRAM_SETTINGS__
#include "../Experimental.h"
#include "../SampleFormat.h"
#undef SPECTRAL_SELECTION_GLOBAL_SWITCH
@@ -153,10 +154,10 @@ public:
// Variables used for computing the spectrum
mutable FFTParam *hFFT{};
mutable float *window{};
mutable Floats window;
// Two other windows for computing reassigned spectrogram
mutable float *tWindow{}; // Window times time parameter
mutable float *dWindow{}; // Derivative of window
mutable Floats tWindow; // Window times time parameter
mutable Floats dWindow; // Derivative of window
};
#endif