source: plugins/puredata/aubio_setup.c @ be929a5

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

added puredata aubiopitch~
added puredata aubiopitch~

  • Property mode set to 100644
File size: 504 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);
11extern void aubiopitch_tilde_setup (void);
12
13void aubio_setup (void)
14{
15        post(aubio_version);
16        aubioonset_tilde_setup();
17        aubiotempo_tilde_setup();
18        aubiotss_tilde_setup();
19        aubioquiet_tilde_setup();
20        aubiopitch_tilde_setup();
21}
Note: See TracBrowser for help on using the repository browser.