Changeset a64ef1d
- Timestamp:
- Mar 3, 2013, 4:51:48 AM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- b8c0685
- Parents:
- 33cd81f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitch.c
r33cd81f ra64ef1d 35 35 #include "pitch/pitch.h" 36 36 37 /** pitch detection algorithm */37 /** pitch detection algorithms */ 38 38 typedef enum 39 39 { 40 aubio_pitcht_yin, /**< YIN algorithm */ 41 aubio_pitcht_mcomb, /**< Multi-comb filter */ 42 aubio_pitcht_schmitt, /**< Schmitt trigger */ 43 aubio_pitcht_fcomb, /**< Fast comb filter */ 44 aubio_pitcht_yinfft, /**< Spectral YIN */ 45 aubio_pitcht_default = aubio_pitcht_yinfft, /**< the one used when "default" is asked */ 40 aubio_pitcht_yin, /**< `yin`, YIN algorithm */ 41 aubio_pitcht_mcomb, /**< `mcomb`, Multi-comb filter */ 42 aubio_pitcht_schmitt, /**< `schmitt`, Schmitt trigger */ 43 aubio_pitcht_fcomb, /**< `fcomb`, Fast comb filter */ 44 aubio_pitcht_yinfft, /**< `yinfft`, Spectral YIN */ 45 aubio_pitcht_default 46 = aubio_pitcht_yinfft, /**< `default` */ 46 47 } aubio_pitch_type; 47 48 48 /** pitch detection output mode */49 /** pitch detection output modes */ 49 50 typedef enum 50 51 {
Note: See TracChangeset
for help on using the changeset viewer.