音频插件实现

发布于 2024-11-09 14:45:41 字数 33 浏览 0 评论 0原文

有谁知道一些示例代码来说明 iOS 音频插件的实现?

Does anyone know about some sample code that illustrates the implementation of an audio plugin for iOS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烛影斜 2024-11-16 14:45:41

iPhone SDK 3 有一个 AUPlugin.h 标头,它似乎允许您创建自己的音频单元,然后您可以将其放入 AUGraph 中。但它显然从未工作过,并且它的所有函数(AudioComponentRegister() 等)在 iOS 4 中均已弃用。

基本上,要进行自己的音频处理,您需要将渲染回调设置为单个音频单元的属性或AUGraph 中的某个位置,并在该回调函数中完成您的工作。

There was an AUPlugin.h header for iPhone SDK 3 that seemed to permit you to create your own audio units, which you could then put in an AUGraph. But it apparently never worked, and all its functions (AudioComponentRegister(), etc.) were deprecated in iOS 4.

Basically, to do your own audio processing, you need to set up a render callback as a property of a single audio unit or somewhere in an AUGraph, and do your work in that callback function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文