tags:

views:

32

answers:

2

I want to code up a audio fx program that would process the samples coming in through the mic input and play them through the audio output in near realtime. But I cannot seem to figure out how to get accesses to the individual audio samples as they come in. Can. Anybody point me in the right direction and possibly some sample code? Thanks.

A: 

The audio-processing framework in iOS is called Core Audio. See the Core Audio Overview. For sample code see the iOS Reference Library sample code. You can filter for audio using the searchbox

tonklon
A: 

You probably want to be looking at the Audio Queue services (most/all of the function names begin with "AudioQueue").

tc.