Warrior
Warrior

Reputation: 39374

Are there any open source libraries for performing FFTs on the iPhone?

I would like to compare to WAV audio files using an FFT. What open source libraries and / or sample code exist for performing such an operation?

Upvotes: 2

Views: 711

Answers (2)

hotpaw2
hotpaw2

Reputation: 70703

Apple's aurioTouch sample app (available on the developer.apple.com web site) includes source code for an FFT (not as fast as the one in the iOS4 Accelerate framework though). The sample app also contains a source code example of how to use an FFT to process audio input data, which is very similar to the raw PCM data contained in a .wav file after the header.

Upvotes: 2

justin
justin

Reputation: 104698

Accelerate.framework

Upvotes: 0

Related Questions