I am using AudioQueue to stream audio from an arbitrary source (the class basically just needs a delegate that provides it with packets), ive made a class that wraps all the functionality lets call is AudioQueueClass, I am using this class to play many songs, in between each song I release my class and create a new AudioQueueClass instance to play the next song, I am seeing two problems which I havent been able to find the cause maybe some of you have run into these issues and can shed a light on it
1- Every now and the AudioQueue plays a few seconds of a previous song and then comes back to the current song, not sure why this could be happening as I am creating a new queue for each song, and i believe i am disposing of my queues appropriatly --some code to follow
2- This one is even worse, sometimes when im into the 3rd or 4th song the audio queue stops playing... I believe the problem is that AudioQueueInputCallback inCallbackProc stops being called, which i guess is because the queue stopped playing and processing packets, but cannot find out why...Another thing to note is that this only happens when i stream to the device from an outside source, if i merely get the file data locally and use that as packets i hear a "stutter" in the music but it recovers and plays fine, whereas in the streaming case the sound just stops (pretty weird)
Here is the code i am using to dispose of the audio queue, not posting anymore because not sure what relevant parts to post, please let me know if you want to see any of the code and ill post it
AudioQueueFlush(audioQueue);
AudioQueueStop(audioQueue, true);
if (audioFileStream)
{
err = AudioFileStreamClose(audioFileStream);
audioFileStream = nil;
if (err)
{
[self failWithErrorCode:AS_FILE_STREAM_CLOSE_FAILED];
}
}
//
// Dispose of the Audio Queue
//
if (audioQueue)
{
err = AudioQueueDispose(audioQueue, true);
audioQueue = nil;
if (err)
{
[self failWithErrorCode:AS_AUDIO_QUEUE_DISPOSE_FAILED];
}
}
Thanks
Daniel