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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user