- Timestamp:
- Sep 23, 2009, 7:40:14 PM (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:
- 000b090
- Parents:
- 2062e48
- Location:
- ext
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ext/aubioext.h
r2062e48 rb511fa9 28 28 #include <aubio.h> 29 29 30 #ifdef JACK_SUPPORT30 #ifdef HAVE_JACK 31 31 #include "jackio.h" 32 32 #endif 33 34 #if HAVE_ALSA 35 #define ALSA_SUPPORT 1 36 #endif 33 37 34 38 #include "sndfileio.h" -
ext/jackio.c
r2062e48 rb511fa9 19 19 20 20 #include "config.h" 21 #ifdef JACK_SUPPORT21 #ifdef HAVE_JACK 22 22 #include <jack/jack.h> 23 23 #include "aubio_priv.h" … … 173 173 174 174 175 #endif /* JACK_SUPPORT*/175 #endif /* HAVE_JACK */ -
ext/jackio.h
r2062e48 rb511fa9 35 35 typedef struct _aubio_jack_t aubio_jack_t; 36 36 /** jack process function */ 37 typedef int (*aubio_process_func_t)( smpl_t **input, smpl_t **output, int37 typedef int (*aubio_process_func_t)(float **input, float **output, int 38 38 nframes); 39 39 -
ext/midi/midi_driver.h
r2062e48 rb511fa9 50 50 void aubio_midi_driver_settings(aubio_settings_t* settings); 51 51 52 #include " config.h"53 #if JACK_SUPPORT52 #include "aubioext.h" 53 #if HAVE_JACK 54 54 void aubio_midi_direct_output(aubio_midi_driver_t * dev, aubio_midi_event_t * event); 55 #endif 55 #endif /* HAVE_JACK */ 56 56 57 57 #endif /* _AUBIO_AUDRIVER_H */
Note: See TracChangeset
for help on using the changeset viewer.