diff options
author | John Glover <glover.john@gmail.com> | 2011-01-03 16:08:54 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2011-01-03 16:08:54 +0000 |
commit | 351526f26a4d2602c43e64767f98e86d5af83e64 (patch) | |
tree | 206cca88545c03a891ce23a756df4f7c901a7e2f /sms | |
parent | 3c8671d262c1d0dbb7f63b506fe2b412fd3869d8 (diff) | |
download | simpl-351526f26a4d2602c43e64767f98e86d5af83e64.tar.gz simpl-351526f26a4d2602c43e64767f98e86d5af83e64.tar.bz2 simpl-351526f26a4d2602c43e64767f98e86d5af83e64.zip |
Whitespace fixes
Diffstat (limited to 'sms')
-rw-r--r-- | sms/transforms.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sms/transforms.c b/sms/transforms.c index bd15e47..04ab492 100644 --- a/sms/transforms.c +++ b/sms/transforms.c @@ -1,6 +1,6 @@ /* * Copyright (c) 2008 MUSIC TECHNOLOGY GROUP (MTG) - * UNIVERSITAT POMPEU FABRA + * UNIVERSITAT POMPEU FABRA * * * This program is free software; you can redistribute it and/or modify @@ -32,26 +32,26 @@ static sfloat w[NMAX * 5 / 4]; /*! \brief Forward Fast Fourier Transform * * function to call the OOURA routines to calculate - * the forward FFT. Operation is in place. + * the forward FFT. Operation is in place. * \todo if sizeFft != power of 2, there is a silent crash.. cuidado! * - * \param sizeFft size of the FFT in samples (must be a power of 2 >= 2) - * \param pArray pointer to real array (n >= 2, n = power of 2) + * \param sizeFft size of the FFT in samples (must be a power of 2 >= 2) + * \param pArray pointer to real array (n >= 2, n = power of 2) */ -void sms_fft( int sizeFft, sfloat *pArray) +void sms_fft(int sizeFft, sfloat *pArray) { - rdft( sizeFft, 1, pArray, ip, w); + rdft(sizeFft, 1, pArray, ip, w); } /*! \brief Inverse Forward Fast Fourier Transform * * function to call the OOURA routines to calculate - * the Inverse FFT. Operation is in place. + * the Inverse FFT. Operation is in place. * - * \param sizeFft size of the FFT in samples (must be a power of 2 >= 2) - * \param pArray pointer to real array (n >= 2, n = power of 2) + * \param sizeFft size of the FFT in samples (must be a power of 2 >= 2) + * \param pArray pointer to real array (n >= 2, n = power of 2) */ -void sms_ifft( int sizeFft, sfloat *pArray) +void sms_ifft(int sizeFft, sfloat *pArray) { - rdft( sizeFft, -1, pArray, ip, w); + rdft(sizeFft, -1, pArray, ip, w); } |