Changeset c423c3d
- Timestamp:
- Sep 25, 2009, 4:12:23 AM (15 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:
- 06d30f9
- Parents:
- 194ef6b
- Location:
- examples
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/aubiomfcc.c
r194ef6b rc423c3d 30 30 uint_t usepitch = 0; 31 31 32 int aubio_process( float **input, float **output, int nframes);33 int aubio_process( float **input, float **output, int nframes) {32 int aubio_process(smpl_t **input, smpl_t **output, int nframes); 33 int aubio_process(smpl_t **input, smpl_t **output, int nframes) { 34 34 unsigned int i; /*channels*/ 35 35 unsigned int j; /*frames*/ -
examples/aubionotes.c
r194ef6b rc423c3d 22 22 uint_t usepitch = 1; 23 23 24 int aubio_process( float **input, float **output, int nframes);25 int aubio_process( float **input, float **output, int nframes) {24 int aubio_process(smpl_t **input, smpl_t **output, int nframes); 25 int aubio_process(smpl_t **input, smpl_t **output, int nframes) { 26 26 unsigned int i; /*channels*/ 27 27 unsigned int j; /*frames*/ -
examples/aubioonset.c
r194ef6b rc423c3d 22 22 uint_t usepitch = 0; 23 23 24 int aubio_process( float **input, float **output, int nframes);25 int aubio_process( float **input, float **output, int nframes) {24 int aubio_process(smpl_t **input, smpl_t **output, int nframes); 25 int aubio_process(smpl_t **input, smpl_t **output, int nframes) { 26 26 unsigned int i; /*channels*/ 27 27 unsigned int j; /*frames*/ -
examples/aubioquiet.c
r194ef6b rc423c3d 23 23 uint_t usepitch = 0; 24 24 25 int aubio_process( float **input, float **output, int nframes);26 int aubio_process( float **input, float **output, int nframes) {25 int aubio_process(smpl_t **input, smpl_t **output, int nframes); 26 int aubio_process(smpl_t **input, smpl_t **output, int nframes) { 27 27 unsigned int i; /*channels*/ 28 28 unsigned int j; /*frames*/ -
examples/aubiotrack.c
r194ef6b rc423c3d 26 26 smpl_t istactus = 0; 27 27 28 int aubio_process( float **input, float **output, int nframes);29 int aubio_process( float **input, float **output, int nframes) {28 int aubio_process(smpl_t **input, smpl_t **output, int nframes); 29 int aubio_process(smpl_t **input, smpl_t **output, int nframes) { 30 30 unsigned int i; /*channels*/ 31 31 unsigned int j; /*frames*/ -
examples/utils.h
r194ef6b rc423c3d 54 54 #ifndef HAVE_JACK 55 55 typedef int (*aubio_process_func_t) 56 ( float **input, float **output, int nframes);56 (smpl_t **input, smpl_t **output, int nframes); 57 57 #endif 58 58 void examples_common_process(aubio_process_func_t process_func, aubio_print_func_t print);
Note: See TracChangeset
for help on using the changeset viewer.