Alsa 暂停和恢复
我正在尝试暂停和取消暂停 alsa 音频。调用 pcm_pause(alsaHandle,0)
会立即暂停音频,但使用 snd_pcm_pause(alsaHandle,1)
取消暂停不会开始音频播放,直到 snd_pcm_drain( alsaHandle)
被调用。但是 snd_pcm_drain() 直到缓冲区中的所有音频都播放完毕后才会返回。因此,如果需要,我无法再次暂停音频。我想知道是否有一种方法可以自由地暂停/取消暂停音频。
I am trying to pause and un-pause the alsa audio. Calling the pcm_pause(alsaHandle,0)
pauses the audio immediately but un-pausing it using snd_pcm_pause(alsaHandle,1)
does not start the audio play until snd_pcm_drain(alsaHandle)
is called. But snd_pcm_drain()
does not return until all of the audio in the buffer has been played. So, I cannot pause the audio again if I need to. I would like to know if there is a way to pause/un-pause audio freely.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论