iOS 中如何为缓冲区分配内存

发布于 2024-11-01 11:23:30 字数 350 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱格式化 2024-11-08 11:23:30

Have a look at the AudioFileStreamExample from apple.

-黛色若梦 2024-11-08 11:23:30
AudioQueueBuffer dummyAQB;
audioQueueBuffer = malloc(sizeof(dummyAQB)*kNumAQBufs);
AudioQueueBuffer dummyAQB;
audioQueueBuffer = malloc(sizeof(dummyAQB)*kNumAQBufs);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文