如何使用音频队列服务播放下一个文件
使用音频队列服务播放下一个文件的正确方法是什么?当按下“播放下一个”按钮时,我应该首先调用 AudioQueueStop,然后调用 AudioQueuePrime/AudioQueueStart,还是只需用下一个文件数据填充缓冲区就足够了?
问题是后者让我在 iPhone 上出现声音故障。
What is the right way to play next file using Audio Queue Services? When "play next" button is pressed should I first call AudioQueueStop and then AudioQueuePrime/AudioQueueStart or it is enough to just fill buffers with next file data?
The problem is that the latter gives me sound glitches on iPhone.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您找到好的解决方案了吗?
您可能还必须重置音频队列,因为每个文件的编码可能不同。
Did you find a good solution?
You may have to reset the audio queue also, as the encoding might be different for each file.