projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa83433
)
mfcc.c: use new_aubio_filterbank_new
author
Paul Brossier
<piem@piem.org>
Sun, 16 Sep 2007 19:56:35 +0000
(21:56 +0200)
committer
Paul Brossier
<piem@piem.org>
Sun, 16 Sep 2007 19:56:35 +0000
(21:56 +0200)
src/mfcc.c
patch
|
blob
|
history
diff --git
a/src/mfcc.c
b/src/mfcc.c
index b5cbd07f961bc817f604403f26625615d0da4573..a77aae4a5f424b3ee40ae9c8ee7aff769f8e5273 100644
(file)
--- a/
src/mfcc.c
+++ b/
src/mfcc.c
@@
-61,7
+61,7
@@
aubio_mfcc_t * new_aubio_mfcc (uint_t win_s, uint_t samplerate, uint_t n_filters
/** filterbank allocation */
- mfcc->fb = new_aubio_filterbank_mfcc
2
(n_filters, mfcc->win_s, samplerate, lowfreq, highfreq);
+ mfcc->fb = new_aubio_filterbank_mfcc(n_filters, mfcc->win_s, samplerate, lowfreq, highfreq);
/** allocating space for fft object (used for dct) */
mfcc->fft_dct=new_aubio_mfft(n_filters, 1);