Browse Source

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".
pull/244/head
Shaun Tierney 10 years ago
parent
commit
7cfd0fba5c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      qnx/ioaudio/ioaudio_driver.c

+ 1
- 1
qnx/ioaudio/ioaudio_driver.c View File

@@ -17,7 +17,7 @@

#include <sys/asound.h>

static const char* PORTNAME_FMT = "playback_%d";
static const char* PORTNAME_FMT = "capture_%d";
typedef jack_default_audio_sample_t sample_t;

struct subchn


Loading…
Cancel
Save