diff options
author | Jan Ekström <jeebjp@gmail.com> | 2018-09-27 20:39:49 +0300 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2018-09-29 20:02:46 +0200 |
commit | fdc952486a8c0d6446783e424953fdb6097ed987 (patch) | |
tree | 8400b36841320dfd79a4d05a23fbf4681fc12077 /audio | |
parent | 3218a5808229b06bd7e2d41a912e7e7031525d56 (diff) |
ao_alsa: handle XRUNs separately from other errors
According to ALSA doxy, EPIPE is a synonym to SND_PCM_STATE_XRUN,
and that is a state that we should attempt to automatically recover
from. In case recovery fails, log an error and return zero.
A warning message will still be output for each XRUN since those
are not something we should generally be receiving.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/out/ao_alsa.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/audio/out/ao_alsa.c b/audio/out/ao_alsa.c index 6b93b854c0..5894a1bcaa 100644 --- a/audio/out/ao_alsa.c +++ b/audio/out/ao_alsa.c @@ -947,10 +947,15 @@ static int get_space(struct ao *ao) snd_pcm_sframes_t space = snd_pcm_avail(p->alsa); if (space < 0) { + if (space == -EPIPE) { + MP_WARN(ao, "ALSA XRUN hit, attempting to recover...\n"); + int err = snd_pcm_prepare(p->alsa); + CHECK_ALSA_ERROR("Unable to recover from under/overrun!"); + return p->buffersize; + } + MP_ERR(ao, "Error received from snd_pcm_avail (%ld, %s)!\n", space, snd_strerror(space)); - if (space == -EPIPE) // EOF - return p->buffersize; // request a reload of the AO if device is not present, // then error out. |