Hi everybody,
Can someone explain how snd_pcm_writei
snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t *pcm, const void *buffer,
snd_pcm_uframes_t size)
works?
I have used it like so:
for (int i = 0; i < 1; i++) {
f = snd_pcm_writei(handle, buffer, frames);
...
}
Full source code at http://pastebin.com/m2f28b578
Does this mean, that I shouldn't give snd_pcm_writei()
the number of
all the frames in buffer
, but only
sample_rate * latency = frames
?
So if I e.g. have: sample_rate = 44100 latency = 0.5 [s] all_frames = 100000
The number of frames that I should give to snd_pcm_writei()
would be
sample_rate * latency = frames 44100*0.5 = 22050
and the number of iterations the for-loop should be?:
(int) 100000/22050 = 4; with frames=22050
and one extra, but only with
100000 mod 22050 = 11800
frames?
Is that how it works?
Louise
p_c_m.html#gf13067c0ebde29118ca05af76e5b17a9">http://www.alsa-project.org/alsa-doc/alsa-lib/group_p_c_m.html#gf13067c0ebde29118ca05af76e5b17a9