ao_alsa: early exit get_space if paused or ALSA is not ready

This has been way too long coming, and for me to notice that a
whole lot of ao_alsa functions do an early return if the AO is
paused.

For the STATE_SETUP case, I had this reproduced once, and never
since. Still, seems like we can start calling this function before
the ALSA device has been fully initialized so we might as well
early exit in that case.
This commit is contained in:
Jan Ekström 2018-09-20 20:11:45 +03:00 committed by sfan5
parent 9c184078a6
commit 3218a58082
1 changed files with 5 additions and 0 deletions

View File

@ -940,6 +940,11 @@ static int get_space(struct ao *ao)
{
struct priv *p = ao->priv;
// in case of pausing or the device still being configured,
// just return our buffer size.
if (p->paused || snd_pcm_state(p->alsa) == SND_PCM_STATE_SETUP)
return p->buffersize;
snd_pcm_sframes_t space = snd_pcm_avail(p->alsa);
if (space < 0) {
MP_ERR(ao, "Error received from snd_pcm_avail (%ld, %s)!\n",