OpenAL/ALUT - 加载 wav 文件
我正在使用以下函数:
_alutLoadWAVMemory_((ALbyte *)myBuf,&format, &data, &size, &freq, &loop);
我有 2 个问题:
- < p>我在网上看到该功能已被弃用,有人知道为什么吗?更重要的是 - 我应该使用什么来代替?
在我调用
_alutLoadWAVMemory_
后,变量format是否分配了有关格式的数据?
多谢!
I'm using the following function:
_alutLoadWAVMemory_((ALbyte *)myBuf,&format, &data, &size, &freq, &loop);
I have 2 questions:
I've read online that the function is deprecated, does anyone know why? More important - what should I use instead?
Is the variable format assigned with data regarding the format after I call
_alutLoadWAVMemory_
?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一些候选函数可供使用,请参阅 有关加载的 Alut 文档。我认为与 LoadWAVMemory 最接近的等效项是“alutCreateBufferFromFileImage”。
There are a few candidates for functions to use instead, see the Alut documentation on loading. I think the closest equivalent to LoadWAVMemory would be 'alutCreateBufferFromFileImage'.