Skip to content

Commit da3153a

Browse files
singalsukv2019i
authored andcommitted
Audio: STFT Process: Fix doxygen syntax error
This patch fixes the documentation for function dft3_32(). Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
1 parent ee15b8c commit da3153a

File tree

1 file changed

+5
-5
lines changed
  • src/include/sof/math

1 file changed

+5
-5
lines changed

src/include/sof/math/fft.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ void mod_fft_multi_plan_free(struct processing_module *mod, struct fft_multi_pla
111111

112112
/**
113113
* dft3_32() - Discrete Fourier Transform (DFT) for size 3.
114-
* @x: Pointer to complex values input array, Q1.31
115-
* @y: Pointer to complex values output array, Q3.29
114+
* @param input: Pointer to complex values input array, Q1.31
115+
* @param output: Pointer to complex values output array, Q3.29
116116
*
117-
* This function is useful for calculating some non power of two FFTs. e.g. FFT for
118-
* size 1536 is done with three 512 size FFTs and one 3 size DFT.
117+
* This function is useful for calculating some non power of two FFTs. E.g. the
118+
* FFT for size 1536 is done with three 512 size FFTs and one 3 size DFT.
119119
*/
120-
void dft3_32(struct icomplex32 *x_in, struct icomplex32 *y);
120+
void dft3_32(struct icomplex32 *input, struct icomplex32 *output);
121121

122122
#endif /* __SOF_FFT_H__ */

0 commit comments

Comments
 (0)