Ignore:
Timestamp:
Oct 19, 2009, 1:52:04 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:
b01bd4a
Parents:
b14107f
Message:

src/spectral/filter.c, src/temporal/filterbank_mel.c: move samplerate to the end

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/temporal/filter.h

    rb14107f r59c046d  
    131131uint_t aubio_filter_get_samplerate (aubio_filter_t * f);
    132132
     133/** get sampling rate of the filter
     134
     135  \param f filter to get sampling rate from
     136  \param samplerate sample rate to set the filter to
     137
     138  \return the sampling rate of the filter, in Hz
     139
     140*/
     141uint_t aubio_filter_set_samplerate (aubio_filter_t * f, uint_t samplerate);
     142
    133143/** create new filter object
    134144
     
    143153
    144154*/
    145 aubio_filter_t *new_aubio_filter (uint_t samplerate, uint_t order,
    146     uint_t channels);
     155aubio_filter_t *new_aubio_filter (uint_t order, uint_t channels);
    147156
    148157/** delete a filter object
Note: See TracChangeset for help on using the changeset viewer.