13
0

backends: jack: display playback only devices

When starting ardour using the jack backend, playback only devices
currently do not get displayed. Mixing and Mastering only workspaces
with e.g. a single USB Dac should be a common use case. Take this use
case into account by adding them to the device list. Tested on Linux
with jack-alsa.
This commit is contained in:
Stefan Müller-Klieser 2017-08-21 20:44:16 +02:00 committed by Robin Gareus
parent 337d5b3e4a
commit 587a2dee55

View File

@ -273,7 +273,7 @@ void
ARDOUR::get_jack_alsa_device_names (device_map_t& devices)
{
#ifdef HAVE_ALSA
get_alsa_audio_device_names(devices);
get_alsa_audio_device_names(devices, HalfDuplexOut);
#else
/* silence a compiler unused variable warning */
(void) devices;