In the Wavy sample from Apple, it use CVCaptureSession to capture audio from the mic (to display waveform). I added AudioToolbox framework and using AudioQueue to try to play back the capture data.

The delegate for the CVCaptureSession is:

- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection 
{
    NSLog(@"capturesession output");
}

The delegate for my AudioQueue play back is:

- (void)audioBufferPlayer:(AudioBufferPlayer*)audioBufferPlayer fillBuffer:(AudioQueueBufferRef)buffer format:(AudioStreamBasicDescription)audioFormat
{
    NSLog(@"audioBufferPlayer");
}

Issue: If the capturesession get started, the AudioQueue play back delegate never get called. Only captureOutput get called. If the capturesession is stopped, I can see the play back delegate get called.

Any explanation ?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.