Changeset 2d1d5ce
- Timestamp:
- Oct 21, 2009, 3:56:16 PM (15 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:
- a8aaef3
- Parents:
- 3ad2ef6
- Location:
- src/temporal
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/temporal/a_weighting.h
r3ad2ef6 r2d1d5ce 61 61 /** create new A-design filter 62 62 63 \param channels number of channels to allocate 63 64 \param samplerate sampling frequency of the signal to filter. Should be one of 64 65 8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and 65 66 192000 Hz 66 \param channels number of channels to allocate67 67 68 68 \return a new filter object … … 75 75 76 76 \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 77 80 78 81 */ -
src/temporal/biquad.h
r3ad2ef6 r2d1d5ce 43 43 /** set coefficients of a biquad filter 44 44 45 \param f filter object as returned by new_aubio_filter() 45 46 \param b0 forward filter coefficient 46 47 \param b1 forward filter coefficient … … 61 62 \param a1 feedback filter coefficient 62 63 \param a2 feedback filter coefficient 64 \param channels number of channels to allocate 63 65 64 66 */ -
src/temporal/c_weighting.h
r3ad2ef6 r2d1d5ce 61 61 /** create new C-design filter 62 62 63 \param channels number of channels to allocate 63 64 \param samplerate sampling frequency of the signal to filter. Should be one of 64 65 8000, 11025, 16000, 22050, 24000, 32000, 44100, 48000, 88200, 96000, and 65 66 192000 Hz 66 \param channels number of channels to allocate67 67 68 68 \return a new filter object … … 74 74 75 75 \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 76 79 77 80 */ -
src/temporal/filter.h
r3ad2ef6 r2d1d5ce 57 57 - new_aubio_filter_a_weighting() and aubio_filter_set_a_weighting(), 58 58 - new_aubio_filter_c_weighting() and aubio_filter_set_c_weighting(). 59 - new_aubio_filter_biquad() and aubio_filter_set_biquad(). 59 60 60 61 */ … … 141 142 uint_t aubio_filter_set_samplerate (aubio_filter_t * f, uint_t samplerate); 142 143 143 /** reset filter memory */ 144 /** reset filter memory 145 146 \param f filter object as returned by new_aubio_filter() 147 148 */ 144 149 void aubio_filter_do_reset (aubio_filter_t * f); 145 150 … … 149 154 and a specific number of channels. 150 155 151 \param samplerate signal sampling rate152 156 \param order order of the filter (number of coefficients) 153 157 \param channels number of channels to allocate
Note: See TracChangeset
for help on using the changeset viewer.