From fa4400efdbd3fa6f386476f701f30228dd2d674e Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 23 Jul 2006 10:27:57 +0000 Subject: [PATCH] remove useless extern remove useless extern --- src/tss.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tss.h b/src/tss.h index 75325a63..af85f398 100644 --- a/src/tss.h +++ b/src/tss.h @@ -51,14 +51,14 @@ typedef struct _aubio_tss_t aubio_tss_t; \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 \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 @@ extern void del_aubio_tss(aubio_tss_t *s); \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 @@ extern void aubio_tss_set_thres(aubio_tss_t *tss, smpl_t thrs); \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 } -- 2.26.2