Skip to content

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
takenori-y committed Jul 25, 2024
1 parent d681e91 commit b28e64a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,25 +122,17 @@ deactivate
- Some option names
- No memory leaks
- Thread-safe
- New features:
- New main features:
- Aperiodicity extraction (`ap`)
- Conversion from/to log area ratio (`lar2par` and `par2lar`)
- Dynamic range compression (`drc`)
- Entropy calculation (`entropy`)
- Huffman coding (`huffman`, `huffman_encode`, and `huffman_decode`)
- Magic number interpolation (`magic_intpl`)
- Median filter (`medfilt`)
- Mel-cepstrum postfilter (`mcpf`)
- Mel-filter-bank extraction (`fbank`)
- Nonrecursive MLPG (`mlpg -R 1`)
- Pitch adaptive spectrum estimation (`pitch_spec`)
- Pitch extraction by DIO used in WORLD (`pitch -a 3`)
- Pitch extraction used in WORLD (`pitch -a 3` and `pitch -a 4`)
- PLP extraction (`plp`)
- Pole-zero plot (`gpolezero`)
- Scalar quantization (`quantize` and `dequantize`)
- Sinusoidal generation from pitch (`pitch2sin`)
- Spectrogram plot (`gspecgram`)
- Stability check of LPC coefficients (`lpccheck`)
- Subband decomposition (`pqmf` and `ipqmf`)
- WORLD synthesis (`world_synth`)
- Windows build support
Expand Down
2 changes: 1 addition & 1 deletion src/main/mgcep.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ void PrintUsage(std::ostream* stream) {
*stream << " 1 (mlsa filter coefficients)" << std::endl;
*stream << " 2 (gain normalized mel-cepstrum)" << std::endl;
*stream << " 3 (gain normalized mlsa filter coefficients)" << std::endl; // NOLINT
*stream << " 4 (power + power normalized mel-cepstrum)" << std::endl; // NOLINT
*stream << " 4 (log power + power normalized mel-cepstrum)" << std::endl; // NOLINT
*stream << " (level 2)" << std::endl;
*stream << " -i i : maximum number of iterations ( int)[" << std::setw(5) << std::right << kDefaultNumIteration << "][ 0 <= i <= ]" << std::endl; // NOLINT
*stream << " -d d : convergence threshold (double)[" << std::setw(5) << std::right << kDefaultConvergenceThreshold << "][ 0.0 <= d <= ]" << std::endl; // NOLINT
Expand Down

0 comments on commit b28e64a

Please sign in to comment.