From 7cfd0fba5c29e92bd3131d250202baa074e4985e Mon Sep 17 00:00:00 2001 From: Shaun Tierney Date: Fri, 2 Oct 2015 13:53:06 -0500 Subject: [PATCH] Fix io-audio JACK Driver Port Name Convention Generally, JACK input ports are called "capture" and a number, while output ports are called "playback". The io-audio JACK driver for QNX looks like an io-audio playback device, but to JACK, it looks like a capture device. So I have updated the driver to call its ports "capture" rather than "playback". --- qnx/ioaudio/ioaudio_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qnx/ioaudio/ioaudio_driver.c b/qnx/ioaudio/ioaudio_driver.c index 5ea5d2b6..e362c2fc 100644 --- a/qnx/ioaudio/ioaudio_driver.c +++ b/qnx/ioaudio/ioaudio_driver.c @@ -17,7 +17,7 @@ #include -static const char* PORTNAME_FMT = "playback_%d"; +static const char* PORTNAME_FMT = "capture_%d"; typedef jack_default_audio_sample_t sample_t; struct subchn