mp4chaps Lua script: don't clutter global environment
[ardour.git] / tools / jacktest.c
index dc494ec574fc8cd50b3aa0d29636da0a600ce578..d75dad5e9ebb02e0acea3fbc6355ac48e52396d5 100644 (file)
@@ -10,7 +10,7 @@ jack_port_t *input_port;
 jack_port_t *output_port;
 jack_client_t *client;
 int loopsize = 25000;
-int xrun_occured = 0;
+int xrun_occurred = 0;
 int consecutive_xruns = 0;
 float first_xrun = 0.0f;
 float last_load = 0.0f;
@@ -36,11 +36,11 @@ process (jack_nframes_t nframes, void *arg)
        out = jack_port_get_buffer (output_port, nframes);
 
        memcpy (out, in, sizeof (jack_default_audio_sample_t) * nframes);
-       
+
        for (i = 0; i < loopsize; ++i) {
                fooey (nframes);
        }
-       
+
        last_load = jack_cpu_load (client);
 
        if ((at_loop += nframes) >= at_loop_size) {
@@ -59,14 +59,14 @@ process (jack_nframes_t nframes, void *arg)
                printf ("loopsize = %d\n", loopsize);
        }
 
-       if (xrun_occured) {
+       if (xrun_occurred) {
                if (consecutive_xruns == 0) {
                        first_xrun = last_load;
                }
                consecutive_xruns++;
        }
 
-       xrun_occured = 0;
+       xrun_occurred = 0;
 
        if (consecutive_xruns >= 10) {
                fprintf (stderr, "Stopping with load = %f (first xrun at %f)\n", last_load, first_xrun);
@@ -90,8 +90,8 @@ jack_shutdown (void *arg)
 int
 jack_xrun (void *arg)
 {
-       fprintf (stderr, "xrun occured with loop size = %d\n", loopsize);
-       xrun_occured = 1;
+       fprintf (stderr, "xrun occurred with loop size = %d\n", loopsize);
+       xrun_occurred = 1;
        return 0;
 }
 
@@ -182,7 +182,7 @@ main (int argc, char *argv[])
        }
 
        free (ports);
-       
+
        ports = jack_get_ports (client, NULL, NULL,
                                JackPortIsPhysical|JackPortIsInput);
        if (ports == NULL) {