Changeset b377d04
- Timestamp:
- Oct 10, 2006, 3:12:19 PM (18 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:
- 633fb32
- Parents:
- ec399cf
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ext/jackio.c
rec399cf rb377d04 152 152 153 153 /* jack callback functions */ 154 static void aubio_jack_shutdown (void *arg ){154 static void aubio_jack_shutdown (void *arg UNUSED){ 155 155 AUBIO_ERR("jack shutdown\n"); 156 156 AUBIO_QUIT(AUBIO_OK); -
ext/midi/midi_player.c
rec399cf rb377d04 476 476 * \note This could be moved to a callback function defined in the main programs 477 477 */ 478 sint_t aubio_midi_receive_event(aubio_midi_player_t* player , aubio_midi_event_t* event)478 sint_t aubio_midi_receive_event(aubio_midi_player_t* player UNUSED, aubio_midi_event_t* event) 479 479 { 480 480 /* current time in seconds */ -
src/filter.c
rec399cf rb377d04 192 192 } 193 193 194 aubio_filter_t * new_aubio_filter(uint_t samplerate , uint_t order) {194 aubio_filter_t * new_aubio_filter(uint_t samplerate UNUSED, uint_t order) { 195 195 aubio_filter_t * f = AUBIO_NEW(aubio_filter_t); 196 196 lsmp_t * x = f->x; -
src/onsetdetection.c
rec399cf rb377d04 43 43 44 44 /* Energy based onset detection function */ 45 void aubio_onsetdetection_energy (aubio_onsetdetection_t *o ,45 void aubio_onsetdetection_energy (aubio_onsetdetection_t *o UNUSED, 46 46 cvec_t * fftgrain, fvec_t * onset) { 47 47 uint_t i,j; … … 55 55 56 56 /* High Frequency Content onset detection function */ 57 void aubio_onsetdetection_hfc(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset){ 57 void aubio_onsetdetection_hfc(aubio_onsetdetection_t *o UNUSED, 58 cvec_t * fftgrain, fvec_t * onset){ 58 59 uint_t i,j; 59 60 for (i=0;i<fftgrain->channels;i++) { -
src/pitchdetection.c
rec399cf rb377d04 68 68 69 69 smpl_t freqconvmidi(smpl_t f,uint_t srate,uint_t bufsize); 70 smpl_t freqconvmidi(smpl_t f,uint_t srate ,uint_t bufsize){70 smpl_t freqconvmidi(smpl_t f,uint_t srate UNUSED,uint_t bufsize UNUSED){ 71 71 return aubio_freqtomidi(f); 72 72 } 73 73 74 74 smpl_t freqconvpass(smpl_t f,uint_t srate,uint_t bufsize); 75 smpl_t freqconvpass(smpl_t f,uint_t srate ,uint_t bufsize){75 smpl_t freqconvpass(smpl_t f,uint_t srate UNUSED,uint_t bufsize UNUSED){ 76 76 return f; 77 77 }
Note: See TracChangeset
for help on using the changeset viewer.