Changes in / [21bd43c:cb0415d]
- Files:
-
- 7 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
examples/utils.c
r21bd43c rcb0415d 60 60 int isonset = 0; 61 61 aubio_pickpeak_t * parms; 62 63 /* mfcc objects */64 //parameters65 uint_t n_filters=20;66 uint_t nyquist= samplerate / 2.;67 smpl_t lowfreq=80.f;68 smpl_t highfreq=18000.f;69 // filterbank object70 aubio_mel_filter * mf;71 72 // DCT mfft and result storage73 aubio_mfft * fft_dct;74 cvec_t * fftgrain_dct;75 smpl_t mfcc_outbuf[11];76 62 77 63 … … 315 301 fftgrain = new_cvec(buffer_size, channels); 316 302 317 //init for mfcc process318 fftgrain_dct= new_cvec(n_filters, channels);319 320 303 if (usepitch) { 321 304 pitchdet = new_aubio_pitchdetection(buffer_size*4, … … 330 313 /* phase vocoder */ 331 314 pv = new_aubio_pvoc(buffer_size, overlap_size, channels); 332 333 // dct phase vocoder334 //TODO: check size335 fft_dct = new_aubio_mfft(n_filters, channels);336 337 315 /* onsets */ 338 316 parms = new_aubio_peakpicker(threshold); … … 368 346 del_fvec(onset); 369 347 del_fvec(woodblock); 370 371 //mffc related372 del_aubio_mfft(fft_dct);373 del_cvec(fftgrain_dct);374 375 348 aubio_cleanup(); 376 349 } -
examples/utils.h
r21bd43c rcb0415d 98 98 extern aubio_pickpeak_t * parms; 99 99 100 /* mfcc objects */101 // params102 extern uint_t n_filters;103 extern uint_t nyquist;104 extern smpl_t lowfreq;105 extern smpl_t highfreq;106 // filterbank object107 extern aubio_mel_filter * mf;108 // DCT pvoc and result storage109 extern aubio_mfft_t * fft_dct;110 extern cvec_t * fftgrain_dct;111 extern smpl_t mfcc_outbuf[20];112 100 113 101 /* pitch objects */ -
src/Makefile.am
r21bd43c rcb0415d 22 22 onset.h \ 23 23 tempo.h \ 24 filter.h \ 25 mfcc.h 26 24 filter.h 27 25 nodist_pkginclude_HEADERS = config.h 28 26 … … 71 69 tempo.h \ 72 70 filter.c \ 73 filter.h \ 74 mfcc.h \ 75 mfcc.c 71 filter.h 76 72 77 73 AM_CFLAGS = @AUBIO_CFLAGS@ @FFTWLIB_CFLAGS@ @SAMPLERATE_CFLAGS@ -
src/aubio.h
r21bd43c rcb0415d 80 80 #include "onset.h" 81 81 #include "tempo.h" 82 #include "mfcc.h"83 82 84 83 #ifdef __cplusplus
Note: See TracChangeset
for help on using the changeset viewer.