From: Paul Brossier Date: Fri, 30 Nov 2007 08:59:33 +0000 (+0100) Subject: examples/utils.{c,h}: move flush_process prototype to .h X-Git-Tag: bzr2git~431 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=16e0f16201dfb010f6cc77f945b94fbd8c3534c9;p=aubio.git examples/utils.{c,h}: move flush_process prototype to .h --- diff --git a/examples/utils.c b/examples/utils.c index 77c813fe..de67627d 100644 --- a/examples/utils.c +++ b/examples/utils.c @@ -21,7 +21,6 @@ void * lash_thread_main (void * data); int lash_main (void); void save_data (void); void restore_data(lash_config_t * lash_config); -void flush_process(aubio_process_func_t process_func, aubio_print_func_t print); pthread_t lash_thread; #endif /* LASH_SUPPORT */ diff --git a/examples/utils.h b/examples/utils.h index 047b0a57..cc75bb63 100644 --- a/examples/utils.h +++ b/examples/utils.h @@ -56,6 +56,7 @@ 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); +void flush_process(aubio_process_func_t process_func, aubio_print_func_t print); void send_noteon(int pitch, int velo);