iOS 中如何为缓冲区分配内存
我有一个 AudioQueueBufferRef 数据类型,我想为缓冲区分配内存,但我不想将其与队列关联。因此,我无法使用 AudioQueueAllocateBufferWithPacketDescription。 向任何缓冲区分配内存的一般方法是什么?
我尝试过 malloc 但没有成功 <代码>
for(i=0;i<numBuffers;i++){
AudBuf[i] = (AudioQueueBufferRef)malloc(sizeof(AudioQueueBuffer));
>}
I have an AudioQueueBufferRef datatype and I want to allocate memory for the buffers but I don't want to associate it with the queue. Hence, I can't use AudioQueueAllocateBufferWithPacketDescription.
What is the general way of allocating memory to any buffer?
I tried malloc but it didn't work
for(i=0;i<numBuffers;i++){ AudBuf[i] = (AudioQueueBufferRef)malloc(sizeof(AudioQueueBuffer));
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 AudioFileStreamExample。
Have a look at the AudioFileStreamExample from apple.