音频队列启动失败
我在使用 AudioStreamer 流式传输歌曲时遇到了以下错误:
Audio queue start failed. err: hwiu 1752656245
此错误发生在以下代码中
err = AudioQueueStart(audioQueue, NULL);
if (err)
{
[self failWithErrorCode:AS_AUDIO_QUEUE_START_FAILED];
return;
}
,其中 audioQueue 是 AudioQueueRef 的对象。如何防止进入 if 条件? 可能是什么错误?我正在使用 github 的 AudioStreamer 示例?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您参考过此链接吗?
第二个是最有趣的。
音频队列启动失败
AudioQueue 启动失败
http://s272.codeinspot.com/q/881582
如果您引用过它,请尝试一下。
这可能对你有帮助。
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.