I download the speakhere from (developer.apple.com),

i want to encode the mp3 to file(By lame)

record callback enter code here: static void HandleInputBuffer ( void *aqData, AudioQueueRef inAQ, AudioQueueBufferRef inBuffer, const AudioTimeStamp *inStartTime, UInt32 inNumPackets, const AudioStreamPacketDescription *inPacketDesc ) { AQRecorderState *pAqData = (AQRecorderState *) aqData; // 1

if (inNumPackets == 0 &&                                             // 2
      pAqData->mDataFormat.mBytesPerPacket != 0)
   inNumPackets =
       inBuffer->mAudioDataByteSize / pAqData->mDataFormat.mBytesPerPacket;

if (AudioFileWritePackets (                                          // 3
        pAqData->mAudioFile,
        false,
        inBuffer->mAudioDataByteSize,
        inPacketDesc,
        pAqData->mCurrentPacket,
        &inNumPackets,
        inBuffer->mAudioData
    ) == noErr) {
        pAqData->mCurrentPacket += inNumPackets;                     // 4
}

if (pAqData->mIsRunning == 0) // 5 return;

AudioQueueEnqueueBuffer (                                            // 6
    pAqData->mQueue,
    inBuffer,
    0,
    NULL
);

}

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.