shithub: aubio

Download patch

ref: 999b0c12fb35317d5dfefa1abafd0ef27674da28
parent: b995296f8cbf63b1463a9e0e1f6fbecc57e59fd5
author: Paul Brossier <piem@piem.org>
date: Tue Nov 13 04:03:11 EST 2007

onsetdetection.{c,h}: remove obsolete _free function

--- a/src/onsetdetection.c
+++ b/src/onsetdetection.c
@@ -283,10 +283,6 @@
 	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) {
--- a/src/onsetdetection.h
+++ b/src/onsetdetection.h
@@ -160,13 +160,6 @@
 
 */
 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
 }