diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-08 07:40:29 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-08 07:40:29 +0100 |
| commit | c9195f997f3e797f03ab90464e4158717198a167 (patch) | |
| tree | 331304f42870246efdc64cc97ad42de59444ef3a /src/audio/fft.h | |
| parent | b8e6929cafa41681f0b27ac104c9cf1d4e510837 (diff) | |
style: Apply clang-format to all source files
Diffstat (limited to 'src/audio/fft.h')
| -rw-r--r-- | src/audio/fft.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/audio/fft.h b/src/audio/fft.h index 81a12d4..8c10afd 100644 --- a/src/audio/fft.h +++ b/src/audio/fft.h @@ -1,6 +1,7 @@ // Fast Fourier Transform (FFT) implementation // Radix-2 Cooley-Tukey algorithm for power-of-2 sizes -// This implementation matches the JavaScript version in tools/spectral_editor/dct.js +// This implementation matches the JavaScript version in +// tools/spectral_editor/dct.js #ifndef AUDIO_FFT_H_ #define AUDIO_FFT_H_ @@ -31,4 +32,4 @@ void dct_fft(const float* input, float* output, size_t N); // N must be a power of 2 void idct_fft(const float* input, float* output, size_t N); -#endif /* AUDIO_FFT_H_ */ +#endif /* AUDIO_FFT_H_ */ |
