开发者

Audio queue starts failed

开发者 https://www.devze.com 2023-04-06 21:54 出处:网络
I have encountered that while streaming song with AudioStreamer following error occured: Audio queue start failed. err: hwiu 1752656245

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?


Did you refer to this links?

Second one is most interesting.

Audio queue start failed

AudioQueue fails to start

http://s272.codeinspot.com/q/881582

Try if you have referred to it.

This may help you.

0

精彩评论

暂无评论...
验证码 换一张
取 消