- Timestamp:
- Jul 23, 2006, 12:27:57 PM (18 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 91879d9
- Parents:
- 227564e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tss.h
r227564e rfa4400e 52 52 53 53 */ 54 externaubio_tss_t * new_aubio_tss(smpl_t thrs, smpl_t alfa, smpl_t beta,54 aubio_tss_t * new_aubio_tss(smpl_t thrs, smpl_t alfa, smpl_t beta, 55 55 uint_t size, uint_t overlap,uint_t channels); 56 56 /** delete tss object … … 59 59 60 60 */ 61 externvoid del_aubio_tss(aubio_tss_t *s);61 void del_aubio_tss(aubio_tss_t *s); 62 62 63 63 /** set transient / steady state separation threshold … … 67 67 68 68 */ 69 externvoid aubio_tss_set_thres(aubio_tss_t *tss, smpl_t thrs);69 void aubio_tss_set_thres(aubio_tss_t *tss, smpl_t thrs); 70 70 /** split input into transient and steady states components 71 71 … … 76 76 77 77 */ 78 externvoid aubio_tss_do(aubio_tss_t *s, cvec_t * input, cvec_t * trans, cvec_t * stead);78 void aubio_tss_do(aubio_tss_t *s, cvec_t * input, cvec_t * trans, cvec_t * stead); 79 79 80 80 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.