Hello everyone!
I am trying to boost up performance of audio application running on c6747 dsp. I am using McASP + EDMA to get arrays of Int32 of audio samples. The thing is dsplib function DSPF_sp_biquad operates with arrays of float. So I am looking for two things:
A. Is there biquad function implementation over Int32 arrays? Is it more efficient?
B. If not is there some more effective way to convert Int32[64] to float[64] than doing explicit cast in for loop?
Thanks.