- Timestamp:
- Apr 24, 2016, 7:00:28 PM (9 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:
- 81984a7
- Parents:
- 8b2aafd
- Location:
- examples
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/jackio.c
r8b2aafd r7585822 22 22 #include "config.h" 23 23 24 #if HAVE_JACK24 #ifdef HAVE_JACK 25 25 #include "utils.h" // for aubio_process_func_t 26 26 #include "jackio.h" -
examples/utils.c
r8b2aafd r7585822 73 73 #if HAVE_JACK 74 74 aubio_jack_t *jack_setup; 75 #endif 75 #endif /* HAVE_JACK */ 76 76 77 77 void examples_common_init (int argc, char **argv); … … 115 115 samplerate = aubio_jack_get_samplerate (jack_setup); 116 116 source_uri = "jack"; 117 #endif 117 #endif /* HAVE_JACK */ 118 118 } 119 119 ibuf = new_fvec (hop_size); … … 138 138 if (usejack) { 139 139 140 #if HAVE_JACK140 #ifdef HAVE_JACK 141 141 debug ("Jack activation ...\n"); 142 142 aubio_jack_activate (jack_setup, process_func); … … 144 144 pause (); 145 145 aubio_jack_close (jack_setup); 146 #else 146 #else /* HAVE_JACK */ 147 147 usage (stderr, 1); 148 148 outmsg ("Compiled without jack output, exiting.\n"); 149 #endif 149 #endif /* HAVE_JACK */ 150 150 151 151 } else { … … 182 182 { 183 183 smpl_t mpitch = floor (aubio_freqtomidi (pitch) + .5); 184 #if HAVE_JACK184 #ifdef HAVE_JACK 185 185 jack_midi_event_t ev; 186 186 ev.size = 3;
Note: See TracChangeset
for help on using the changeset viewer.