typedef struct _vsip_fft_attr_f { vsip_scalar_vi input; vsip_scalar_vi output; vsip_fft_place place; vsip_scalar_f scale; vsip_fft_dir dir; } vsip_fft_attr_f; void vsip_fft_getattr_f(const vsip_fft_f *fft, vsip_fft_attr_f *attr);
This function retrieves the attributes of an FFT (Fast Fourier Transform) object and stores them in the provided attribute structure.
const vsip_fft_p* fft: Pointer to the FFT object.
vsip_fft_attr_p* attr: Pointer to the attribute structure where the FFT object attributes will be stored.