From c9195f997f3e797f03ab90464e4158717198a167 Mon Sep 17 00:00:00 2001 From: skal Date: Sun, 8 Feb 2026 07:40:29 +0100 Subject: style: Apply clang-format to all source files --- src/audio/fft.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/audio/fft.h') 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_ */ -- cgit v1.2.3