summaryrefslogtreecommitdiff
path: root/libasound.c
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-10-30 20:22:01 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2018-10-30 20:22:01 +0200
commit1b87863a75e6992a39f86a2f1c6c080364d37ef6 (patch)
tree4a597249ccc860190616e796fff844fb6c41ac19 /libasound.c
parent87c0451055274f51b727595acd087c29b748d1a3 (diff)
fake snd_pcm_avail_update
Diffstat (limited to 'libasound.c')
-rw-r--r--libasound.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libasound.c b/libasound.c
index c066bf3..d1700a0 100644
--- a/libasound.c
+++ b/libasound.c
@@ -202,6 +202,13 @@ snd_pcm_readi(snd_pcm_t *pcm, void *buffer, snd_pcm_uframes_t size)
return snd_pcm_bytes_to_frames(pcm, sio_read(pcm->hdl, buffer, snd_pcm_frames_to_bytes(pcm, size)));
}
+snd_pcm_sframes_t
+snd_pcm_avail_update(snd_pcm_t *pcm)
+{
+ // FIXME: not correct, but fine since we force blocking for now
+ return snd_pcm_bytes_to_frames(pcm, pcm->hw.par.appbufsz);
+}
+
int
snd_pcm_prepare(snd_pcm_t *pcm)
{