I am coding a pretty standard audio streaming player. It receives audio in packets of NSData (called data) over bluetooth. My problem is that AudioFileStreamParseBytes fails with kAudioFileStreamError_UnspecifiedError immediately after the kAudioFileStreamProperty_ReadyToProducePackets flag is asserted.
The code works fine with m4a files. It only fails with mp3 types.
I've read the Cocoa With Love tutorial: http://cocoawithlove.com/2008/09/streaming-and-playing-live-mp3-stream.html , but passing a discontinuity flag did not work for me.
Before receiving data, I open an AudioFileStream:
AudioFileStreamOpen((__bridge void*)self, propertyListenerProc, packetsProc, kAudioFileMP3Type, &audioFileStreamID);
Upon receiving the data I call:
if (streamingPlayer.discontinuous == YES) {
status = AudioFileStreamParseBytes(streamingPlayer.audioFileStreamID, [data length], [data bytes], kAudioFileStreamParseFlag_Discontinuity);
if (status)
NSLog(@"ERROR: Recieve Data: Parse Bytes: %lu", status);
}
else {
status = AudioFileStreamParseBytes(streamingPlayer.audioFileStreamID, [data length], [data bytes], 0);
if (status)
NSLog(@"ERROR: Recieve Data: Parse Bytes: %lu", status);
}
My "streamingPlayer" object contains this method, called when the audio file stream properties change:
void propertyListenerProc (void *inData, AudioFileStreamID inAudioFileStream, AudioFileStreamPropertyID inPropertyID, UInt32 *ioFlags) {
NSLog(@"propertyListenerProc called");
StreamingPlayer* SELF = (__bridge StreamingPlayer*)inData;
OSStatus status = noErr;
if (inPropertyID == kAudioFileStreamProperty_ReadyToProducePackets) {
NSLog(@"Ready To Produce Packets");
SELF->discontinuous = YES;
//Set up a new output for the audio queue:
status = AudioQueueNewOutput(&(SELF->pDataFormat), audioQueueOutputCallback, inData, NULL, NULL, 0, &SELF->pQueue);
if (status) {
NSLog(@"ERROR: AudioQueueNewOutput: %lu", status);
return;
}
//Allocate buffers:
for (int i=0; i<SELF->numBuffers; i++) {
status = AudioQueueAllocateBuffer(SELF->pQueue, SELF->bufferSize, &(SELF->pBuffers[i]));
if (status) {
NSLog(@"ERROR: Allocating Buffers: %lu", status);
return;
}
}
//Get cookie size:
UInt32 cookieSize;
Boolean writable;
status = AudioFileStreamGetPropertyInfo(inAudioFileStream, kAudioFileStreamProperty_MagicCookieData, &cookieSize, &writable);
if (status) {
NSLog(@"ERROR: Get cookie info: %lu", status);
return;
}
//Get cookie data:
void* cookieData = calloc(1, cookieSize);
status = AudioFileStreamGetProperty(inAudioFileStream, kAudioFileStreamProperty_MagicCookieData, &cookieSize, cookieData);
if (status) {
NSLog(@"ERROR: Get cookie data: %lu", status);
return;
}
//Set cookie on the queue:
status = AudioQueueSetProperty(SELF->pQueue, kAudioQueueProperty_MagicCookie, cookieData, cookieSize);
free(cookieData);
if (status) {
NSLog(@"ERROR: Set cookie data on queue: %lu", status);
return;
}
//Add the running property listener to the queue:
status = AudioQueueAddPropertyListener(SELF->pQueue, kAudioQueueProperty_IsRunning, audioQueueIsRunningCallback, inData);
if (status) {
NSLog(@"ERROR: Set queue property listener: %lu", status);
return;
}
}
}
No other code is called or run before the error. The output is:
2012-07-30 12:11:32.306 Music Sharing[15719:707] propertyListenerProc called
2012-07-30 12:11:32.349 Music Sharing[15719:707] propertyListenerProc called
2012-07-30 12:11:32.351 Music Sharing[15719:707] propertyListenerProc called
2012-07-30 12:11:32.352 Music Sharing[15719:707] propertyListenerProc called
2012-07-30 12:11:32.353 Music Sharing[15719:707] Ready To Produce Packets
2012-07-30 12:11:32.365 Music Sharing[15719:707] ERROR: Recieve Data: Parse Bytes: 2003334207
The error is of type kAudioFileStreamError_UnspecifiedError as found here: https://developer.apple.com/library/mac/#documentation/MusicAudio/Reference/AudioStreamReference/Reference/reference.html
I've played around with setting the discontinuity flag at different times, but to no avail. Any ideas or suggestions would be hugely appreciated! Thank you!