Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/pitch/pitch.h

    r426e6f7 r8c3f717  
    8383uint_t aubio_pitch_set_unit (aubio_pitch_t * o, char_t * mode);
    8484
     85/** set the silence threshold of the pitch detection object
     86
     87  \param o pitch detection object as returned by new_aubio_pitch()
     88  \param silence level threshold under which pitch should be ignored, in dB
     89
     90*/
     91uint_t aubio_pitch_set_silence (aubio_pitch_t * o, smpl_t silence);
     92
     93/** set the silence threshold of the pitch detection object
     94
     95  \param o pitch detection object as returned by new_aubio_pitch()
     96
     97  \param return level threshold under which pitch should be ignored, in dB
     98
     99*/
     100smpl_t aubio_pitch_get_silence (aubio_pitch_t * o);
     101
    85102/** get the current confidence
    86103
Note: See TracChangeset for help on using the changeset viewer.