Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在浏览 iOS Audio Units 示例应用程序 Mixer Host。让我感到困惑的是 AudioUnitSampleType 似乎保存了文件中的所有音频数据。但 AudioUnitSampleType 似乎是一个定点整数。这是某种具有定点整数的数组吗?否则它会以定点整数对所有样本数据进行排序?
是的,样本通常以带符号的 16 位整数形式提供。可以请求其他样本类型(例如浮点数),但我以前从未真正做到这一点。因此,大多数应用程序处理 sint16 并在必要时将其转换为动态浮点数以进行 DSP 计算。