summaryrefslogtreecommitdiff
path: root/gtk2_ardour/fft.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/fft.h')
-rw-r--r--gtk2_ardour/fft.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk2_ardour/fft.h b/gtk2_ardour/fft.h
index a68ed59edc..d80616b77f 100644
--- a/gtk2_ardour/fft.h
+++ b/gtk2_ardour/fft.h
@@ -42,22 +42,22 @@ class FFT
void analyze(ARDOUR::Sample *);
void calculate();
- uint32_t bins() const { return _dataSize; }
+ uint32_t bins() const { return _data_size; }
- float powerAtBin(uint32_t i) const { return _powerAtBin[i]; }
- float phaseAtBin(uint32_t i) const { return _phaseAtBin[i]; }
+ float power_at_bin(uint32_t i) const { return _power_at_bin[i]; }
+ float phase_at_bin(uint32_t i) const { return _phase_at_bin[i]; }
private:
- uint32_t const _windowSize;
- uint32_t const _dataSize;
+ uint32_t const _window_size;
+ uint32_t const _data_size;
uint32_t _iterations;
float *_fftInput;
float *_fftOutput;
- float *_powerAtBin;
- float *_phaseAtBin;
+ float *_power_at_bin;
+ float *_phase_at_bin;
fftwf_plan _plan;
};