wn->min_iqs = pad->bytes_per_frame;
goto again;
}
- if (pad->poll_fd >= 0 && !FD_ISSET(pad->poll_fd, &s->rfds))
+ if (pad->poll_fd < 0 || !FD_ISSET(pad->poll_fd, &s->rfds))
return;
frames = bytes / pad->bytes_per_frame;
frames = snd_pcm_writei(pad->handle, data, frames);
- if (frames == 0 || frames == -EAGAIN)
+ if (frames == 0 || frames == -EAGAIN) {
+ /*
+ * The alsa poll fd was ready for IO but we failed to write to
+ * the alsa handle. This means another event is pending. We
+ * don't care about that but we have to dispatch the event in
+ * order to avoid a busy loop. So we simply read from the poll
+ * fd.
+ */
+ char buf[100];
+ if (read(pad->poll_fd, buf, 100))
+ do_nothing;
return;
+ }
if (frames > 0) {
btr_consume(btrn, frames * pad->bytes_per_frame);
goto again;