mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-01 22:58:49 -04:00
Replaced snd_pcm_avail() with snd_pcm_hwsync()
This commit is contained in:
parent
dac0626b9f
commit
8205a95376
14 changed files with 48 additions and 67 deletions
|
|
@ -319,10 +319,10 @@ static snd_pcm_state_t snd_pcm_meter_state(snd_pcm_t *pcm)
|
|||
return snd_pcm_state(meter->slave);
|
||||
}
|
||||
|
||||
static int snd_pcm_meter_avail(snd_pcm_t *pcm, snd_pcm_uframes_t *availp)
|
||||
static int snd_pcm_meter_hwsync(snd_pcm_t *pcm)
|
||||
{
|
||||
snd_pcm_meter_t *meter = pcm->private_data;
|
||||
return snd_pcm_avail(meter->slave, availp);
|
||||
return snd_pcm_hwsync(meter->slave);
|
||||
}
|
||||
|
||||
static int snd_pcm_meter_delay(snd_pcm_t *pcm, snd_pcm_sframes_t *delayp)
|
||||
|
|
@ -599,7 +599,7 @@ static snd_pcm_ops_t snd_pcm_meter_ops = {
|
|||
static snd_pcm_fast_ops_t snd_pcm_meter_fast_ops = {
|
||||
status: snd_pcm_meter_status,
|
||||
state: snd_pcm_meter_state,
|
||||
avail: snd_pcm_meter_avail,
|
||||
hwsync: snd_pcm_meter_hwsync,
|
||||
delay: snd_pcm_meter_delay,
|
||||
prepare: snd_pcm_meter_prepare,
|
||||
reset: snd_pcm_meter_reset,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue