fix compilation without jack
authorPaul Brossier <piem@altern.org>
Sat, 28 May 2005 06:42:21 +0000 (06:42 +0000)
committerPaul Brossier <piem@altern.org>
Sat, 28 May 2005 06:42:21 +0000 (06:42 +0000)
fix compilation without jack

examples/utils.c
examples/utils.h

index 5455bd774cb3cb9086898f28a4dad9df7ef8ddcf..606e6bbf289c29b184f09912cd42cd23f716b68b 100644 (file)
@@ -269,7 +269,7 @@ void examples_common_del(void){
 
 void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print ){
   if(usejack) {
-#ifdef JACK_SUPPORT
+#if JACK_SUPPORT
     aubio_jack_t * jack_setup;
     debug("Jack init ...\n");
     jack_setup = new_aubio_jack(channels, channels,
index 1e3d4c8f5a49a60346fa4798b25c786713373887..b5761dc2fedbcc8b123cf88feb52cc6516017994 100644 (file)
@@ -43,6 +43,10 @@ int parse_args (int argc, char **argv);
 void examples_common_init(int argc, char **argv);
 void examples_common_del(void);
 typedef void (aubio_print_func_t)(void);
+#ifndef JACK_SUPPORT
+typedef int (*aubio_process_func_t)
+        (smpl_t **input, smpl_t **output, int nframes);
+#endif
 void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print);