Dave Robillard a écrit :
jack_client_open vs the old jack_client_new, which will automatically
pick a new name by appending a number (eg specimen_1 specimen_2, etc).
It's a trivial one line thing...
Here is the patch ;)
but unfortunately, running multiple instances is not the solution for
me; it is not manageable to have each element of the drums in a seperate
sequence window in seq24 :(
Best regards
Philippe
--- specimen-0.5.1/src/jackdriver.c 2005-01-12 07:50:21.000000000 +0100
+++ specimen-0.5.1-new/src/jackdriver.c 2006-10-21 20:53:09.000000000 +0200
@@ -179,7 +179,7 @@
debug ("Initializing Jack Driver...\n");
pthread_mutex_lock (&running_mutex);
running = 0;
- if ((client = jack_client_new ("specimen")) == 0)
+ if ((client = jack_client_open ("specimen", JackNullOption, NULL, NULL)) == 0)
{
errmsg ("Failed to create new jack client. Is jackd running?\n");
pthread_mutex_unlock (&running_mutex);