diff options
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_ */ |
