From: Heiga Z. <hei...@us...> - 2007-10-16 02:21:34
|
Update of /cvsroot/sp-tk/SPTK/src/bin/sp2mgc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11613/src/bin/sp2mgc Modified Files: _sp2mgc.c Log Message: Arrange spaces for macros. Wrap strrchr() by rindex() if string.h does not exist. Index: _sp2mgc.c =================================================================== RCS file: /cvsroot/sp-tk/SPTK/src/bin/sp2mgc/_sp2mgc.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** _sp2mgc.c 9 Oct 2007 04:33:30 -0000 1.6 --- _sp2mgc.c 16 Oct 2007 02:20:56 -0000 1.7 *************** *** 54,58 **** Extract mel-generalized cepstral coefficients for given spectrum ! int sp2mgc(xw, flng, b, m, a, g, itr1, itr2, dd, e); double *xw : input sequence --- 54,58 ---- Extract mel-generalized cepstral coefficients for given spectrum ! int sp2mgc(xw, flng, b, m, a, g, itr1, itr2, dd, e, itype); double *xw : input sequence *************** *** 69,72 **** --- 69,73 ---- double f : mimimum value of the determinant of the normal matrix + int itype : input data type return value : 0 -> completed by end condition *************** *** 80,86 **** #if defined(WIN32) ! #include "SPTK.h" #else ! #include <SPTK.h> #endif --- 81,87 ---- #if defined(WIN32) ! # include "SPTK.h" #else ! # include <SPTK.h> #endif |