Changeset 7c6c806d for examples/utils.c


Ignore:
Timestamp:
Sep 6, 2007, 7:32:13 PM (17 years ago)
Author:
Amaury Hazan <mahmoudax@gmail.org>
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:
7a46bf6, fdf39ba
Parents:
71b1b4b
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/utils.c

    r71b1b4b r7c6c806d  
    6060int isonset = 0;
    6161aubio_pickpeak_t * parms;
     62
     63/* mfcc objects */
     64//parameters
     65uint_t n_filters=20;
     66uint_t nyquist= samplerate / 2.;
     67smpl_t lowfreq=80.f;
     68smpl_t highfreq=18000.f;
     69// filterbank object
     70aubio_mel_filter * mf;
     71
     72// DCT mfft and result storage
     73aubio_mfft * fft_dct;
     74cvec_t * fftgrain_dct;
     75smpl_t mfcc_outbuf[11];
    6276
    6377
     
    301315  fftgrain  = new_cvec(buffer_size, channels);
    302316
     317  //init for mfcc process
     318  fftgrain_dct= new_cvec(n_filters, channels);
     319
    303320  if (usepitch) {
    304321    pitchdet = new_aubio_pitchdetection(buffer_size*4,
     
    313330  /* phase vocoder */
    314331  pv = new_aubio_pvoc(buffer_size, overlap_size, channels);
     332 
     333  // dct phase vocoder
     334  //TODO: check size
     335  fft_dct = new_aubio_mfft(n_filters, channels);
     336
    315337  /* onsets */
    316338  parms = new_aubio_peakpicker(threshold);
     
    346368  del_fvec(onset);
    347369  del_fvec(woodblock);
     370 
     371  //mffc related
     372  del_aubio_mfft(fft_dct);
     373  del_cvec(fftgrain_dct);
     374 
    348375  aubio_cleanup();
    349376}
Note: See TracChangeset for help on using the changeset viewer.