onsetdetection.{c,h}: remove obsolete _free function
authorPaul Brossier <piem@piem.org>
Tue, 13 Nov 2007 08:03:11 +0000 (09:03 +0100)
committerPaul Brossier <piem@piem.org>
Tue, 13 Nov 2007 08:03:11 +0000 (09:03 +0100)
src/onsetdetection.c
src/onsetdetection.h

index ed25ac8e1b8692d436b1ff0c09bfcd6927beb056..98a0bd93594ad2c314ffa119b7a8a612c2c4193f 100644 (file)
@@ -283,10 +283,6 @@ new_aubio_onsetdetection (aubio_onsetdetection_type type,
        return o;
 }
 
-void aubio_onsetdetection_free (aubio_onsetdetection_t *o){
-  del_aubio_onsetdetection(o);
-}
-
 void del_aubio_onsetdetection (aubio_onsetdetection_t *o){
 
        switch(o->type) {
index 6728e1865f89ef0c3c1dad2630e5ff64d9199ff1..c8eafcd47613500929b615f36f4dd7290e07706e 100644 (file)
@@ -160,13 +160,6 @@ aubio_onsetdetection_t * new_aubio_onsetdetection(aubio_onsetdetection_type type
 
 */
 void del_aubio_onsetdetection(aubio_onsetdetection_t *o);
-/** deletion of an onset detection object (obsolete)
-
-  \param o onset detection object as returned by new_aubio_onsetdetection()
-
-*/
-void aubio_onsetdetection_free(aubio_onsetdetection_t *o);
-
 
 #ifdef __cplusplus
 }