jack: clear "shutdown" flag on reconnect

When the connection failed once, you had to restart MPD, because it
never cleared the jack_data.shutdown flag.  Instead, it refused to
play anything "because there is no client thread" (which is wrong at
that point).
This commit is contained in:
Max Kellermann 2009-01-29 17:08:44 +01:00
parent 3a070d3d23
commit 1e0ceb3d88
2 changed files with 3 additions and 0 deletions

1
NEWS
View File

@ -36,6 +36,7 @@ ver 0.15 - (200?/??/??)
ver 0.14.2 (2009/??/??)
* audio outputs:
- jack: allocate ring buffers before connecting
- jack: clear "shutdown" flag on reconnect
ver 0.14.1 (2009/01/17)

View File

@ -220,6 +220,8 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
jd->ringbuffer[0] = jack_ringbuffer_create(jd->ringbuffer_size);
jd->ringbuffer[1] = jack_ringbuffer_create(jd->ringbuffer_size);
jd->shutdown = false;
if ((jd->client = jack_client_new(mpd_jack_name(jd))) == NULL) {
g_warning("jack server not running?");
return -1;