From: Takenori Y. <tak...@us...> - 2017-01-30 14:07:07
|
Update of /cvsroot/sp-tk/SPTK4/src In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7450 Modified Files: gnorm.cc ignorm.cc Log Message: fix usage Index: gnorm.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/gnorm.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gnorm.cc 16 Dec 2016 09:36:55 -0000 1.2 --- gnorm.cc 30 Jan 2017 14:07:05 -0000 1.3 *************** *** 65,70 **** *stream << " gnorm [ options ] [ infile ] > stdout" << std::endl; *stream << " options:" << std::endl; ! *stream << " -m m : order of generalized cepstrum [" << kDefaultNumOrder << "]" << std::endl; // NOLINT ! *stream << " -g g : gamma [" << kDefaultGamma << "]" << std::endl; // NOLINT *stream << " -c c : gamma = -1 / (int) c" << std::endl; *stream << " -h : print this message" << std::endl; --- 65,70 ---- *stream << " gnorm [ options ] [ infile ] > stdout" << std::endl; *stream << " options:" << std::endl; ! *stream << " -m m : order of generalized cepstrum [" << kDefaultNumOrder << "]" << std::endl; // NOLINT ! *stream << " -g g : gamma [" << kDefaultGamma << "]" << std::endl; // NOLINT *stream << " -c c : gamma = -1 / (int) c" << std::endl; *stream << " -h : print this message" << std::endl; *************** *** 74,78 **** *stream << " normalized generalized cepstrum (double)" << std::endl; *stream << " notice:" << std::endl; ! *stream << " value of c must be c >= 1 (double)" << std::endl; *stream << std::endl; *stream << " SPTK: version " << sptk::kVersion << std::endl; --- 74,78 ---- *stream << " normalized generalized cepstrum (double)" << std::endl; *stream << " notice:" << std::endl; ! *stream << " value of c must be c >= 1" << std::endl; *stream << std::endl; *stream << " SPTK: version " << sptk::kVersion << std::endl; Index: ignorm.cc =================================================================== RCS file: /cvsroot/sp-tk/SPTK4/src/ignorm.cc,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ignorm.cc 16 Dec 2016 09:36:55 -0000 1.2 --- ignorm.cc 30 Jan 2017 14:07:05 -0000 1.3 *************** *** 65,70 **** *stream << " ignorm [ options ] [ infile ] > stdout" << std::endl; *stream << " options:" << std::endl; ! *stream << " -m m : order of generalized cepstrum [" << kDefaultNumOrder << "]" << std::endl; // NOLINT ! *stream << " -g g : gamma [" << kDefaultGamma << "]" << std::endl; // NOLINT *stream << " -c c : gamma = -1 / (int) c" << std::endl; *stream << " -h : print this message" << std::endl; --- 65,70 ---- *stream << " ignorm [ options ] [ infile ] > stdout" << std::endl; *stream << " options:" << std::endl; ! *stream << " -m m : order of generalized cepstrum [" << kDefaultNumOrder << "]" << std::endl; // NOLINT ! *stream << " -g g : gamma [" << kDefaultGamma << "]" << std::endl; // NOLINT *stream << " -c c : gamma = -1 / (int) c" << std::endl; *stream << " -h : print this message" << std::endl; *************** *** 74,78 **** *stream << " generalized cepstrum (double)" << std::endl; *stream << " notice:" << std::endl; ! *stream << " value of c must be c >= 1 (double)" << std::endl; *stream << std::endl; *stream << " SPTK: version " << sptk::kVersion << std::endl; --- 74,78 ---- *stream << " generalized cepstrum (double)" << std::endl; *stream << " notice:" << std::endl; ! *stream << " value of c must be c >= 1" << std::endl; *stream << std::endl; *stream << " SPTK: version " << sptk::kVersion << std::endl; |