OpenAL:如何创建 2 或 3 个以上的立体声源?
我正在创建一个上下文,
alcCreateContext(device, NULL).
问题是 ALC_STEREO_SOURCES
默认情况下为 3,因此如果我尝试重现超过 3 个立体声,我的程序就会冻结。
如何将 ALC_STEREO_SOURCES
设置为 32?
更多信息:我正在使用 Objective-C 为 iOS 平台编写代码。
I'm creating a context with
alcCreateContext(device, NULL).
The problem is that ALC_STEREO_SOURCES
is 3 by default, so my program freezes if I try to reproduce more than 3 stereo sounds.
How can I set ALC_STEREO_SOURCES
to 32?
More info: I'm coding for the iOS platform, in Objective-C.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过创建 ALCInt 类型的数组来指定上下文创建属性,其中包含有序的名称和值对。
例如:
You can specify context creation attributes by making an array of type ALCInt, containing ordered pairs of names and values.
So for example: