up vote 2 down vote favorite
2
share [g+] share [fb]

I'm working on a couple different iphone apps that both record and play sounds concurrently. Think multitrack mixing... play one sound a save it then listen to that sound while recording the next sound to another file. My mechanism for this has been to start up two different audio queues, one for recording, and one for playing.

This was working A-OK until the release of OS 3.0... Since then, however, the following happens:

If I start the recording queue first, it supposedly starts fine, but the call to AudioQueueStart for the playback queue returns kAudioQueueErr_CannotStart.

If I start the playback queue first, it also supposedly starts fine, but the call to AudioQueueStart for the record queue returns the same error, kAudioQueueErr_CannotStart.

Anyone have any luck debugging this error? Seems like maybe the two queues are stomping on each other's memory or something? The official description is: "The audio queue has encountered a problem and cannot start." Not super helpful...

Jeremy

link|improve this question
Audio session management turned out to be the problem. The docs kinda suck because they imply that it's really only necessary to deal with audio sessions to manage how your app interacts with other apps. Definitely not the case. Beware. – Jeremy Borden Jul 8 '09 at 22:49
feedback

3 Answers

up vote 5 down vote accepted

It's kind of a cliche answer, but did you use the audio session API to set your audio category to "play and record"? You have to do this in order to reserve the microphone for your app's use. There were a bunch of changes to audio session in 3.0 (to create the obj-c convenience class AVAudioSession, and to define some new categories), so it's possible that changes there might be messing you up.

BTW, if you're not on the coreaudio-api list (lists.apple.com), you should be. The community and the Apple engineers there are really helpful.

link|improve this answer
To be more specific: UInt32 sessionCategory = kAudioSessionCategory_PlayAndRecord; AudioSessionSetProperty ( kAudioSessionProperty_AudioCategory, sizeof (sessionCategory), &sessionCategory ); worked for me. – Paulius Liekis Mar 21 '10 at 10:17
feedback

Maybe I'm wrong, however I have a feeling that only one (active?) audio queue can exist at a time.

You may need switch your output audio queue to an audio unit (Remote IO).
And AudioQueues are kind of lame for playback, so an audio unit couldn't hurt.

This guy managed to do it, and talks about it in this blog post.

link|improve this answer
feedback

This means we only need to create one session at a time and need to switch the input of user in out put using Audio Input output.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.