Commit bbf04537 authored by Max Kellermann's avatar Max Kellermann

jack: register ports before activating clients

Call jack_port_register() before jack_activate().
parent 9ef6c799
......@@ -227,11 +227,6 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
jack_set_sample_rate_callback(jd->client, mpd_jack_srate, jd);
jack_on_shutdown(jd->client, mpd_jack_shutdown, jd);
if ( jack_activate(jd->client) ) {
g_warning("cannot activate client");
return -1;
}
jd->ports[0] = jack_port_register(jd->client, "left",
JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
......@@ -248,6 +243,11 @@ mpd_jack_connect(struct jack_data *jd, struct audio_format *audio_format)
return -1;
}
if ( jack_activate(jd->client) ) {
g_warning("cannot activate client");
return -1;
}
/* hay que buscar que hay */
if (!jd->output_ports[1] &&
(jports = jack_get_ports(jd->client, NULL, NULL,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment