ao_jack: only auto-connect to audio ports

This prevents ao_jack from auto-connecting to MIDI ports (or other,
hypothetical future port types).
This commit is contained in:
Niklas Haas 2018-09-02 03:45:56 +02:00 committed by Jan Ekström
parent 3744d0bda9
commit fed0ea111b
1 changed files with 2 additions and 1 deletions

View File

@ -143,7 +143,8 @@ connect_to_outports(struct ao *ao)
if (!port_name)
port_flags |= JackPortIsPhysical;
matching_ports = jack_get_ports(p->client, port_name, NULL, port_flags);
const char *port_type = JACK_DEFAULT_AUDIO_TYPE; // exclude MIDI ports
matching_ports = jack_get_ports(p->client, port_name, port_type, port_flags);
if (!matching_ports || !matching_ports[0]) {
MP_FATAL(ao, "no ports to connect to\n");