Changeset e9e2a87
- Timestamp:
- Dec 8, 2013, 4:48:31 AM (11 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:
- 6b14351
- Parents:
- 8122e54a
- Location:
- examples
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/jackio.c
r8122e54a re9e2a87 23 23 24 24 #if HAVE_JACK 25 #include "utils.h" // for aubio_process_func_t 26 #include "jackio.h" 25 27 #include "aubio_priv.h" 26 #include "jackio.h"27 28 28 29 typedef jack_default_audio_sample_t jack_sample_t; -
examples/jackio.h
r8122e54a re9e2a87 40 40 /** jack object */ 41 41 typedef struct _aubio_jack_t aubio_jack_t; 42 /** jack process function */43 typedef int (*aubio_process_func_t) (fvec_t * input, fvec_t * output);44 42 45 43 /** jack device creation function */ -
examples/parse_args.h
r8122e54a re9e2a87 41 41 extern uint_t mix_input; 42 42 43 typedef int (*aubio_process_func_t)(fvec_t * input, fvec_t * output);44 45 43 // functions defined in utils.c 46 44 extern void examples_common_init (int argc, char **argv); -
examples/utils.h
r8122e54a re9e2a87 52 52 void send_noteon (int pitch, int velo); 53 53 54 /** common process function */ 55 typedef int (*aubio_process_func_t) (fvec_t * input, fvec_t * output);
Note: See TracChangeset
for help on using the changeset viewer.