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 ?