I'm working on a POC and I need to get the raw data from iPhone's mic and send it to a processor. The raw data I need has to be very specific. It has to be on 16000 Hz frequency and be of a kAudioFormatLinearPCM format. I took Apple's SpeakHere sample code and used it as my base. I made sure I set the AudioSession to have the right frequency using this code (added to awakeFromNib method in SpeakHereController.mm file:
Float64 float64=16000.0;
size = sizeof(float64);
error = AudioSessionSetProperty (kAudioSessionProperty_PreferredHardwareSampleRate, size, &float64);
error = AudioSessionGetProperty (kAudioSessionProperty_CurrentHardwareSampleRate, &size, &float64);
Float32 preferredBufferSize = 0.01;
size = sizeof(preferredBufferSize);
error = AudioSessionSetProperty (kAudioSessionProperty_PreferredHardwareIOBufferDuration, size,&preferredBufferSize);
error = AudioSessionGetProperty (kAudioSessionProperty_CurrentHardwareIOBufferDuration, &size,&preferredBufferSize);
and made sure the data is set correctly by reading it. In next step I added my code that gets the input buffer and sends it to server for processing in AQRecorder's MyInputBufferHandler method as follow:
// ____________________________________________________________________________________
// AudioQueue callback function, called when an input buffers has been filled.
void AQRecorder::MyInputBufferHandler( void * inUserData, AudioQueueRe finAQ, AudioQueueBufferRef inBuffer, const AudioTimeStamp * inStartTime, UInt32 nNumPackets, 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");
aqr->mRecordPacket += inNumPackets;
// Added by Amir -->
[jp processData:inBuffer->mAudioData size:inBuffer->mAudioDataByteSize];
// <<--
//fprintf(stdout, "got data size is %lu\n",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));
}
}
In this code jp an instance of the job processor and all it does it sends the data to the processor.
That said I get the data in my processor but it's not the right format/rate I guess since processor (it's a recognizer) is not working properly!
I'm almost sure the issue is with the format, I know the data I have in this method is most likely not in kAudioFormatLinearPCM format but I don't know what format it is and I don't know how to change it to kAudioFormatLinearPCM!
Any help or pointers would be very mush appreciated as I've been circling around for days now.
Thanks a bunch guys, Amir