我什么时候应该分配 DirectSound 缓冲区?

发布于 2024-08-17 20:33:48 字数 286 浏览 3 评论 0原文

请帮我下定决心。

  1. 在应用程序启动时分配,在退出时释放。
  2. 流开始时分配,流停止后立即释放。

哪一个?为什么?

如果它很重要:它是一个语音通信应用程序,例如 Ekiga。我使用 DSSCL_NORMAL 分配缓冲区(8 位 22KHz据我测试,限制是错误的)。

Please help me make up my mind.

  1. Allocate at the start of the application, free at the exit.
  2. Allocate when streaming starts, free as soon as streaming stops.

Which one? Why?

In case it matters: it's a voice communication application like Ekiga. I'm allocating the buffers with DSSCL_NORMAL (the 8bit 22KHz limitation is false as far as I've tested).

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

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

发布评论

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

评论(1

风筝在阴天搁浅。 2024-08-24 20:33:49

由于声音对于您的应用程序至关重要,因此您应该在能够向用户显示错误后立即初始化它。否则,您将让人们等待他们无法使用的应用程序的启动顺序。

另一方面,如果分配的能力取决于用户设置,那么您显然应该允许他们在执行可能导致应用程序崩溃的操作之前达到这些设置。

Since sound is CRITICAL to your application you should initialise it as soon as you are capable of displaying errors to the user. Otherwise you're making people wait through a startup sequence for an application they can't use.

On the other hand, if the ability to allocate is dependent on user settings then you should obviously allow them to reach the settings prior to doing something that could crash the application.

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