I'm building an IPhone Application that records sound. I'm using Audio Queue Services, and everything works great for recording.

The thing is, I'm using AudioFileWritePackets for file writing, and I'm trying to put the same "AAC + ADTS" packets to a network socket.

The resulting file is different since some "headers" or "adts header" might be missing. Any ideas how to write the ADTS header and/or AAC header? Any ideas on this topic would be awesome.

Thank you! Here is my Buffer Handler method:

void Recorder::MyInputBufferHandler(    void *                              inUserData,
                                        AudioQueueRef                       inAQ,
                                        AudioQueueBufferRef                 inBuffer,
                                        const AudioTimeStamp *              inStartTime,
                                        UInt32                              inNumPackets,
                                        const AudioStreamPacketDescription* inPacketDesc)
{
    AQRecorder *aqr = (AQRecorder *)inUserData;
    try {

        if (inNumPackets > 0) {
            // write packets to file
            XThrowIfError(
                            AudioFileWritePackets(aqr->mRecordFile,
                                                  FALSE,
                                                  inBuffer->mAudioDataByteSize,
                                                  inPacketDesc,
                                                  aqr->mRecordPacket,
                                                  &inNumPackets,
                                                  inBuffer->mAudioData),
                            "AudioFileWritePackets failed");

            fprintf(stderr, "Writing.");


            // We write the Net Buffer.
            [aqr->socket_if writeData :(void *)(inBuffer->mAudioData)
                               :inBuffer->mAudioDataByteSize];


            aqr->mRecordPacket += inNumPackets;
        }

        // if we're not stopping, re-enqueue the buffe so that it gets filled again
        if (aqr->IsRunning()) {
            XThrowIfError(AudioQueueEnqueueBuffer(inAQ, inBuffer, 0, NULL), "AudioQueueEnqueueBuffer failed");
        }

    } catch (CAXException e) {
        char buf[256];
        fprintf(stderr, "Error: %s (%s)\n", e.mOperation, e.FormatError(buf));
    }
}
link|improve this question

0% accept rate
feedback

1 Answer

I've recently encountered this issue with the iLBC codec, and arrived at the solution as follows:

Record the audio data you want and just write it to a file. Then, take that file and do an octal dump on it. You can use the -c flag to see ascii characters.

Then, create a separate file that you know doesn't contain the header. This is just your data from the buffers on the audio queue. Octal dump that, and compare.

From this, you should have the header and enough info on how to proceed. Hope this helps.

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.