typedef struct _vsip_fftm_attr_f { vsip_scalar_mi input; vsip_scalar_mi output; vsip_fft_place place; vsip_scalar_f scale; vsip_fft_dir dir; vsip_major major; } vsip_fftm_attr_f; void vsip_fftm_getattr_f(const vsip_fftm_f *fft, vsip_fftm_attr_f *attr);
This function retrieves the attributes of an Multiple-FFT (Fast Fourier Transform) object and stores them in the provided attribute structure.
const vsip_fftm_p* fft: Pointer to the FFT object.
vsip_fftm_attr_p* attr: Pointer to the attribute structure where the FFT object attributes will be stored.