source: plugins/puredata/aubio_setup.c @ cf83555

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since cf83555 was cf83555, checked in by Paul Brossier <piem@altern.org>, 19 years ago

rewrite of the puredata external
rewrite of the puredata external

  • Property mode set to 100644
File size: 434 bytes
Line 
1
2#include <m_pd.h>
3
4char aubio_version[] = "aubio external for pd, version 0.1";
5
6void aubio_setup (void);
7extern void aubioonset_tilde_setup (void);
8extern void aubiotempo_tilde_setup (void);
9extern void aubiotss_tilde_setup (void);
10extern void aubioquiet_tilde_setup (void);
11
12void aubio_setup (void)
13{
14        post(aubio_version);
15        aubioonset_tilde_setup();
16        aubiotempo_tilde_setup();
17        aubiotss_tilde_setup();
18        aubioquiet_tilde_setup();
19}
Note: See TracBrowser for help on using the repository browser.