Changeset 2d1d5ce


Ignore:
Timestamp:
Oct 21, 2009, 3:56:16 PM (15 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:
a8aaef3
Parents:
3ad2ef6
Message:

src/temporal: improve documentation

Location:
src/temporal
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/temporal/a_weighting.h

    r3ad2ef6 r2d1d5ce  
    6161/** create new A-design filter
    6262
     63  \param channels number of channels to allocate
    6364  \param samplerate sampling frequency of the signal to filter. Should be one of
    6465  8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and
    6566  192000 Hz
    66   \param channels number of channels to allocate
    6767
    6868  \return a new filter object
     
    7575
    7676  \param f filter object to get coefficients from
     77  \param samplerate sampling frequency of the signal to filter. Should be one of
     78  8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and
     79  192000 Hz
    7780
    7881*/
  • src/temporal/biquad.h

    r3ad2ef6 r2d1d5ce  
    4343/** set coefficients of a biquad filter
    4444
     45  \param f filter object as returned by new_aubio_filter()
    4546  \param b0 forward filter coefficient
    4647  \param b1 forward filter coefficient
     
    6162  \param a1 feedback filter coefficient
    6263  \param a2 feedback filter coefficient
     64  \param channels number of channels to allocate
    6365
    6466*/
  • src/temporal/c_weighting.h

    r3ad2ef6 r2d1d5ce  
    6161/** create new C-design filter
    6262
     63  \param channels number of channels to allocate
    6364  \param samplerate sampling frequency of the signal to filter. Should be one of
    6465  8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and
    6566  192000 Hz
    66   \param channels number of channels to allocate
    6767
    6868  \return a new filter object
     
    7474
    7575  \param f filter object to get coefficients from
     76  \param samplerate sampling frequency of the signal to filter. Should be one of
     77  8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and
     78  192000 Hz
    7679
    7780*/
  • src/temporal/filter.h

    r3ad2ef6 r2d1d5ce  
    5757    - new_aubio_filter_a_weighting() and aubio_filter_set_a_weighting(),
    5858    - new_aubio_filter_c_weighting() and aubio_filter_set_c_weighting().
     59    - new_aubio_filter_biquad() and aubio_filter_set_biquad().
    5960 
    6061*/
     
    141142uint_t aubio_filter_set_samplerate (aubio_filter_t * f, uint_t samplerate);
    142143
    143 /** reset filter memory */
     144/** reset filter memory
     145
     146  \param f filter object as returned by new_aubio_filter()
     147
     148*/
    144149void aubio_filter_do_reset (aubio_filter_t * f);
    145150
     
    149154  and a specific number of channels.
    150155
    151   \param samplerate signal sampling rate
    152156  \param order order of the filter (number of coefficients)
    153157  \param channels number of channels to allocate
Note: See TracChangeset for help on using the changeset viewer.