shithub: aubio

Download patch

ref: fa4400efdbd3fa6f386476f701f30228dd2d674e
parent: 227564e1421648f3073d27fb78127450f96f65d4
author: Paul Brossier <[email protected]>
date: Sun Jul 23 06:27:57 EDT 2006

remove useless extern
remove useless extern


--- a/src/tss.h
+++ b/src/tss.h
@@ -51,7 +51,7 @@
   \param channels number of input channels
 
 */
-extern aubio_tss_t * new_aubio_tss(smpl_t thrs, smpl_t alfa, smpl_t beta, 
+aubio_tss_t * new_aubio_tss(smpl_t thrs, smpl_t alfa, smpl_t beta, 
     uint_t size, uint_t overlap,uint_t channels);
 /** delete tss object
 
@@ -58,7 +58,7 @@
   \param s tss object as returned by new_aubio_tss
 
 */
-extern void del_aubio_tss(aubio_tss_t *s);
+void del_aubio_tss(aubio_tss_t *s);
 
 /** set transient / steady state separation threshold 
  
@@ -66,7 +66,7 @@
   \param thrs new threshold value
 
 */
-extern void aubio_tss_set_thres(aubio_tss_t *tss, smpl_t thrs);
+void aubio_tss_set_thres(aubio_tss_t *tss, smpl_t thrs);
 /** split input into transient and steady states components
  
   \param s tss object as returned by new_aubio_tss
@@ -75,7 +75,7 @@
   \param stead output steady state components
 
 */
-extern void aubio_tss_do(aubio_tss_t *s, cvec_t * input, cvec_t * trans, cvec_t * stead);
+void aubio_tss_do(aubio_tss_t *s, cvec_t * input, cvec_t * trans, cvec_t * stead);
 
 #ifdef __cplusplus
 }