src/onset/onset.c: rename aubio_onset to aubio_onset_do
authorPaul Brossier <piem@piem.org>
Wed, 7 Oct 2009 21:24:54 +0000 (23:24 +0200)
committerPaul Brossier <piem@piem.org>
Wed, 7 Oct 2009 21:24:54 +0000 (23:24 +0200)
src/onset/onset.c
src/onset/onset.h
tests/src/test-onset.c

index a7a801332d52617ab79a283ee376e5b89f0bccad..296aafc1b289f6b4d09494f3af0a09d3f92c22c0 100644 (file)
@@ -40,7 +40,7 @@ struct _aubio_onset_t {
 };
 
 /* execute onset detection function on iput buffer */
-void aubio_onset(aubio_onset_t *o, fvec_t * input, fvec_t * onset)
+void aubio_onset_do (aubio_onset_t *o, fvec_t * input, fvec_t * onset)
 {
   uint_t isonset = 0;
   uint_t wasonset = o->wasonset;
index aa67bd1fa9d210ed5b85ee19315ed278445b4d27..8e7e7e31a66edf98d5b2152abeab48907a221b53 100644 (file)
   The following routines compute the onset detection function and detect peaks
   in these functions. When onsets are found above a given silence threshold,
   and after a minimum inter-onset interval, the output vector returned by
-  aubio_onset is filled with 1. Otherwise, the output vector remains 0.
+  aubio_onset_do is filled with 1. Otherwise, the output vector remains 0.
 
   The peak-picking threshold, the silence threshold, and the minimum
-  inter-onset interval can be adjusted during the execution of the aubio_onset
-  routine using the corresponding functions.
+  inter-onset interval can be adjusted during the execution of the
+  aubio_onset_do routine using the corresponding functions.
 
 */
  
@@ -61,7 +61,7 @@ aubio_onset_t * new_aubio_onset (aubio_onsetdetection_type type_onset,
   \param onset output vector, 1 if onset is found, 0 otherwise
 
 */
-void aubio_onset(aubio_onset_t *o, fvec_t * input, fvec_t * onset);
+void aubio_onset_do (aubio_onset_t *o, fvec_t * input, fvec_t * onset);
 
 /** set onset detection silence threshold
 
index c26ccdccfb61988c0fdd97dd5b944fd577031cb4..370cd03b37cc31ebe528e4b899aa08be8ab9a327 100644 (file)
@@ -10,7 +10,7 @@ int main(){
         uint_t i = 0;
 
         while (i < 10) {
-          aubio_onset(onset,in,out);
+          aubio_onset_do (onset,in,out);
           i++;
         };