AudioUnitInitialize 失败,错误代码 1852008051

发布于 2024-11-15 12:05:35 字数 383 浏览 3 评论 0 原文

我正在尝试使用 iOS 中的音频单元进行录制。
我将 AudioComponentDescription 中的 componentSubType 设置为 kAudioUnitSubType_VoiceProcessingIO
那么AudioUnitInitialize和AudioOutputUnitStart的错误码都是1852008051('ncfs')
我在文档中找不到此错误代码。
但是当我将 kAudioUnitSubType_VoiceProcessingIO 转换为 kAudioUnitSubType_RemoteIO 时,一切都很好。
谁能告诉我从 VoiceProcessingIO 更改为 RemoteIO 时应该修改哪些内容?

I'm trying to record with Audio Unit in iOS.
I set componentSubType in AudioComponentDescription to kAudioUnitSubType_VoiceProcessingIO.
Then both of AudioUnitInitialize and AudioOutputUnitStart's error code is 1852008051('ncfs').
I cannot find this error code in the document.
But when I turn kAudioUnitSubType_VoiceProcessingIO to kAudioUnitSubType_RemoteIO, everything is just fine.
Could anyone tell me what should be modified when changing from VoiceProcessingIO to RemoteIO?

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

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

发布评论

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

评论(1

夜声 2024-11-22 12:05:35

如果您想从设备进行录制,则需要使用远程 IO 组件子类型,然后设置此属性:

UInt32 flag = 1;
AudioUnitSetProperty(yourAudioUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &flag, sizeof(flag));

您还可能会找到有关使用 远程 IO 音频单元 有帮助。

If you are wanting to record from the device, then you need to use the remote IO component subtype, and then set this property:

UInt32 flag = 1;
AudioUnitSetProperty(yourAudioUnit, kAudioOutputUnitProperty_EnableIO, kAudioUnitScope_Input, 1, &flag, sizeof(flag));

You also might find this tutorial about use of remote IO audio units helpful.

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