From: fujishita t. <fjs...@us...> - 2017-07-31 04:31:33
|
Update of /cvsroot/sp-tk/SPTK/src/bin/mfcc In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv5508 Modified Files: _mfcc.c Log Message: remove unused function Index: _mfcc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/mfcc/_mfcc.c,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** _mfcc.c 26 Apr 2017 03:59:06 -0000 1.17 --- _mfcc.c 31 Jul 2017 04:31:31 -0000 1.18 *************** *** 106,119 **** } - void hamming(double *x, const int leng) - { - int k; - double arg; - - arg = M_2PI / (leng - 1); - for (k = 0; k < leng; k++) - x[k] *= (0.54 - 0.46 * cos(k * arg)); - } - void pre_emph(double *x, double *y, const double alpha, const int leng) { --- 106,109 ---- |