Changeset a64ef1d for src


Ignore:
Timestamp:
Mar 3, 2013, 4:51:48 AM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
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
Message:

src/pitch/pitch.c: improve documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitch.c

    r33cd81f ra64ef1d  
    3535#include "pitch/pitch.h"
    3636
    37 /** pitch detection algorithm */
     37/** pitch detection algorithms */
    3838typedef enum
    3939{
    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` */
    4647} aubio_pitch_type;
    4748
    48 /** pitch detection output mode */
     49/** pitch detection output modes */
    4950typedef enum
    5051{
Note: See TracChangeset for help on using the changeset viewer.