mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
Fixed a bug in interval printing. Added missing mmap functions. Added _try hw_params variant.
This commit is contained in:
parent
6171d0fc20
commit
e618ef6f00
4 changed files with 94 additions and 12 deletions
|
|
@ -34,6 +34,16 @@
|
|||
#endif
|
||||
|
||||
|
||||
const snd_pcm_channel_area_t *snd_pcm_mmap_running_areas(snd_pcm_t *pcm)
|
||||
{
|
||||
return pcm->running_areas;
|
||||
}
|
||||
|
||||
const snd_pcm_channel_area_t *snd_pcm_mmap_stopped_areas(snd_pcm_t *pcm)
|
||||
{
|
||||
return pcm->stopped_areas;
|
||||
}
|
||||
|
||||
const snd_pcm_channel_area_t *snd_pcm_mmap_areas(snd_pcm_t *pcm)
|
||||
{
|
||||
if (pcm->stopped_areas &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue