shithub: aubio

Download patch

ref: 9c59a30694782fe175fee5c54f2d008e9fbf489d
parent: fb4ab893f8d305b2aa969c766222a4c22f717294
author: Paul Brossier <piem@piem.org>
date: Fri Sep 14 14:07:38 EDT 2018

examples/utils.h: process_block returns void

--- a/examples/utils.h
+++ b/examples/utils.h
@@ -66,7 +66,7 @@
 void send_noteon (smpl_t pitch, smpl_t velo);
 
 /** common process function */
-typedef int (*aubio_process_func_t) (fvec_t * input, fvec_t * output);
+typedef void (*aubio_process_func_t) (fvec_t * input, fvec_t * output);
 
 void process_block (fvec_t *ibuf, fvec_t *obuf);
 void process_print (void);