- 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
- Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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.