I have encountered that while streaming song with AudioStreamer following error occured:
Audio queue start failed. err: hwiu 1752656245
this error occured in the following code
err = AudioQueueStart(audioQueue, NULL);
if (err)
{
[self failWithErrorCode:AS_AUDIO_QUEUE_START_FAILED];
return;
}
where audioQueue is object of AudioQueueRef. What to do to prevent going into if condition?? What could be the error? I am using AudioStreamer example of github?