Ignore:
Timestamp:
Sep 17, 2009, 1:20:54 AM (15 years ago)
Author:
Paul Brossier <piem@piem.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:
3b3b03e
Parents:
7bf3dcb
Message:

src/spectral/filterbank.c: refactorise filter bank, split mel frequency coefficients to src/spectral/filterbank_mel.c, start bumping license to GPLv3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/mfcc.c

    r7bf3dcb r06cae6c  
    2525#include "cvec.h"
    2626#include "spectral/fft.h"
    27 #include "spectral/filterbank.h"
     27#include "spectral/filterbank_mel.h"
    2828#include "spectral/mfcc.h"
    2929
     
    6262 
    6363  /** filterbank allocation */
    64   mfcc->fb = new_aubio_filterbank_mfcc(n_filters, mfcc->win_s, samplerate, lowfreq, highfreq);
     64  mfcc->fb = new_aubio_filterbank(n_filters, mfcc->win_s);
     65  aubio_filterbank_set_mel_coeffs(mfcc->fb, samplerate, lowfreq, highfreq);
    6566
    6667  /** allocating space for fft object (used for dct) */
Note: See TracChangeset for help on using the changeset viewer.