[PD-cvs] SF.net SVN: pure-data: [9702] branches/pd-extended/v0-40/pd/src/ s_audio_jack.c

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Tue Apr 15 23:28:50 CEST 2008


Revision: 9702
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9702&view=rev
Author:   eighthave
Date:     2008-04-15 14:28:50 -0700 (Tue, 15 Apr 2008)

Log Message:
-----------
added in IOhannes' jack fixes, patch 1942258

http://sourceforge.net/tracker/index.php?func=detail&aid=1942258&group_id=55736&atid=478072

Modified Paths:
--------------
    branches/pd-extended/v0-40/pd/src/s_audio_jack.c

Modified: branches/pd-extended/v0-40/pd/src/s_audio_jack.c
===================================================================
--- branches/pd-extended/v0-40/pd/src/s_audio_jack.c	2008-04-15 21:24:27 UTC (rev 9701)
+++ branches/pd-extended/v0-40/pd/src/s_audio_jack.c	2008-04-15 21:28:50 UTC (rev 9702)
@@ -13,7 +13,7 @@
 
 
 #define MAX_CLIENTS 100
-#define NUM_JACK_PORTS 32
+#define NUM_JACK_PORTS 1024
 #define BUF_JACK 4096
 static jack_nframes_t jack_out_max;
 #define JACK_OUT_MAX  64
@@ -80,8 +80,9 @@
 static void
 jack_shutdown (void *arg)
 {
-        /* Ignore for now */
-  //    exit (1);
+  fprintf(stderr, "jack: JACK server shut down\n");
+  sys_close_audio();
+  jack_client = NULL;
 }
 
 static int jack_xrun(void* arg) {
@@ -208,6 +209,7 @@
         int client_iterator = 0;
         int new_jack = 0;
         int srate;
+        jack_status_t status;
 
         jack_dio_error = 0;
         
@@ -223,13 +225,28 @@
                 inchans = NUM_JACK_PORTS;
         }
 
-        /* try to become a client of the JACK server (we allow two pd's)*/
+        /* try to become a client of the JACK server */
+        /* if no JACK server exists, start a default one (jack_client_open() does that for us... */
         if (!jack_client) {
           do {
             sprintf(port_name,"pure_data_%d",client_iterator);
             client_iterator++;
-          } while (((jack_client = jack_client_new (port_name)) == 0) && client_iterator < 2);
-        
+
+            jack_client = jack_client_open (port_name, JackNullOption, &status, NULL);
+            if (status & JackServerFailed) {
+              fprintf(stderr,"unable to connect to JACK server\n");
+              jack_client=NULL;
+              break;
+            }
+          } while (status & JackNameNotUnique);
+
+          if(status) {
+            if (status & JackServerStarted) {
+              fprintf(stderr, "started JACK server\n");
+            } else {
+              fprintf(stderr, "jack returned status %d\n", status);
+            }
+          }
           
           if (!jack_client) { // jack spits out enough messages already, do not warn
             sys_inchannels = sys_outchannels = 0;
@@ -285,11 +302,21 @@
         for (j = 0; j < inchans; j++) {
                 sprintf(port_name, "input%d", j);
                 if (!input_port[j]) input_port[j] = jack_port_register (jack_client, port_name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsInput, 0);
+                if (!input_port[j]) {
+                  fprintf (stderr, "jack: can only register %d input ports (instead of requested %d)\n", j, inchans);
+                  sys_inchannels = inchans = j;
+                  break;
+                }
         }
 
         for (j = 0; j < outchans; j++) {
                 sprintf(port_name, "output%d", j);
                 if (!output_port[j]) output_port[j] = jack_port_register (jack_client, port_name, JACK_DEFAULT_AUDIO_TYPE, JackPortIsOutput, 0);
+                if (!output_port[j]) {
+                  fprintf (stderr, "jack: can only register %d output ports (instead of requested %d)\n", j, outchans);
+                  sys_outchannels = outchans = j;
+                  break;
+                }
         } 
         outport_count = outchans;
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list