File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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__ */
You can’t perform that action at this time.
0 commit comments