From a7ea8bdc37b8be36dab76f01de7966da3645eba2 Mon Sep 17 00:00:00 2001 From: Christoph Kuhr Date: Tue, 12 Feb 2019 10:56:14 +0100 Subject: [PATCH] simple_client_timestamps --- example-clients/simple_client1.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/example-clients/simple_client1.c b/example-clients/simple_client1.c index 0e3b203a..ece9ada9 100644 --- a/example-clients/simple_client1.c +++ b/example-clients/simple_client1.c @@ -183,13 +183,6 @@ main (int argc, char *argv[]) * it. */ - ports = jack_get_ports (client, NULL, NULL, - JackPortIsPhysical|JackPortIsInput); - if (ports == NULL) { - fprintf(stderr, "no physical playback ports\n"); - exit (1); - } - if (jack_connect (client, jack_port_name (output_port1), "meter:in")) { fprintf (stderr, "cannot connect output ports\n"); } @@ -198,7 +191,6 @@ main (int argc, char *argv[]) fprintf (stderr, "cannot connect output ports\n"); } - jack_free (ports); /* install a signal handler to properly quits jack client */ #ifdef WIN32