summaryrefslogtreecommitdiff
path: root/audio_jack.c
diff options
context:
space:
mode:
authorJörn Nettingsmeier <nettings@luchtbeweging.nl>2019-02-15 19:29:24 +0000
committerJörn Nettingsmeier <nettings@luchtbeweging.nl>2019-02-15 19:29:24 +0000
commit0b589cbe6d13d43faa252d70156c7a2e1323734c (patch)
treefbbcfc381dfdd206eca588cea73b6fdba5b7670c /audio_jack.c
parent89a8add7af36d5525dbaf1eebbc38e715431952b (diff)
Remove option to configure port names. This is very unusual for a JACK client, nothing is gained by offering this, and it might confuse users.
Diffstat (limited to 'audio_jack.c')
-rw-r--r--audio_jack.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/audio_jack.c b/audio_jack.c
index e4d9743..15f1f49 100644
--- a/audio_jack.c
+++ b/audio_jack.c
@@ -163,9 +163,9 @@ static int jack_client_open_if_needed(void) {
client = jack_client_open(config.jack_client_name, JackNoStartServer, &status);
if (client) {
jack_set_process_callback(client, jack_stream_write_cb, 0);
- left_port = jack_port_register(client, config.jack_left_channel_name, JACK_DEFAULT_AUDIO_TYPE,
+ left_port = jack_port_register(client, "out_L", JACK_DEFAULT_AUDIO_TYPE,
JackPortIsOutput, 0);
- right_port = jack_port_register(client, config.jack_right_channel_name,
+ right_port = jack_port_register(client, "out_R",
JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
sample_rate = jack_get_sample_rate(client);
// debug(1, "jackaudio sample rate = %" PRId32 ".", sample_rate);
@@ -235,14 +235,6 @@ int jack_init(__attribute__((unused)) int argc, __attribute__((unused)) char **a
if (config_lookup_string(config.cfg, "jack.client_name", &str)) {
config.jack_client_name = (char *)str;
}
- /* Get the Left Channel Name. */
- if (config_lookup_string(config.cfg, "jack.left_channel_name", &str)) {
- config.jack_left_channel_name = (char *)str;
- }
- /* Get the Right Channel Name. */
- if (config_lookup_string(config.cfg, "jack.right_channel_name", &str)) {
- config.jack_right_channel_name = (char *)str;
- }
/* See if we should attempt to connect to the jack server automatically, and, if so, how often
* we should try. */
@@ -263,10 +255,6 @@ int jack_init(__attribute__((unused)) int argc, __attribute__((unused)) char **a
if (config.jack_client_name == NULL)
config.jack_client_name = strdup("Shairport Sync");
- if (config.jack_left_channel_name == NULL)
- config.jack_left_channel_name = strdup("left");
- if (config.jack_right_channel_name == NULL)
- config.jack_right_channel_name = strdup("right");
jackbuf = jack_ringbuffer_create(buffer_size);
if (jackbuf == NULL)