From: Keiichiro O. <ur...@us...> - 2017-01-23 00:41:26
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22616 Modified Files: mgc2mgc.cc Log Message: modify comments Index: mgc2mgc.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/mgc2mgc.cc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** mgc2mgc.cc 13 Jan 2017 06:55:17 -0000 1.3 --- mgc2mgc.cc 23 Jan 2017 00:41:23 -0000 1.4 *************** *** 93,98 **** *stream << " value of c must be c >= 1" << std::endl; *stream << " value of C must be C >= 1" << std::endl; ! *stream << " if -u is used without -n, input is regarded as 1+g/mgc[0],g*mgc[1],...,g*mgc[m]" << std::endl; // NOLINT ! *stream << " if -U is used without -N, output is regarded as 1+g/mgc[0],g*mgc[1],...,g*mgc[m]" << std::endl; // NOLINT *stream << std::endl; *stream << " SPTK: version " << sptk::kVersion << std::endl; --- 93,98 ---- *stream << " value of c must be c >= 1" << std::endl; *stream << " value of C must be C >= 1" << std::endl; ! *stream << " if -u is used without -n, input is regarded as 1+g*mgc[0],g*mgc[1],...,g*mgc[m]" << std::endl; // NOLINT ! *stream << " if -U is used without -N, output is regarded as 1+g*mgc[0],g*mgc[1],...,g*mgc[m]" << std::endl; // NOLINT *stream << std::endl; *stream << " SPTK: version " << sptk::kVersion << std::endl; *************** *** 263,267 **** while (sptk::ReadStream(false, input_length, &generalized_cepstrum, &input_stream)) { ! // input modification: 1*g/mgc[0] -> mgc[0] if (!input_normalization_flag && input_multiplication_flag) (*generalized_cepstrum.begin()) = --- 263,267 ---- while (sptk::ReadStream(false, input_length, &generalized_cepstrum, &input_stream)) { ! // input modification: 1+g*mgc[0] -> mgc[0] if (!input_normalization_flag && input_multiplication_flag) (*generalized_cepstrum.begin()) = |