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 ed25ac8..98a0bd9 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 6728e18..c8eafcd 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
 }