Changeset d4791e5 for src/temporal/a_weighting.c
- Timestamp:
- Jan 3, 2014, 12:47:22 AM (11 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:
- 2e01060
- Parents:
- 89e9e71 (diff), 4fe62ba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/temporal/a_weighting.c
r89e9e71 rd4791e5 29 29 aubio_filter_set_a_weighting (aubio_filter_t * f, uint_t samplerate) 30 30 { 31 uint_t order; lsmp_t *a, *b; lvec_t *as, *bs; 31 32 aubio_filter_set_samplerate (f, samplerate); 32 lvec_t *bs = aubio_filter_get_feedforward (f);33 lvec_t *as = aubio_filter_get_feedback (f);34 lsmp_t *b = bs->data, *a = as->data;35 uint_torder = aubio_filter_get_order (f);33 bs = aubio_filter_get_feedforward (f); 34 as = aubio_filter_get_feedback (f); 35 b = bs->data, a = as->data; 36 order = aubio_filter_get_order (f); 36 37 37 38 if (order != 7) {
Note: See TracChangeset
for help on using the changeset viewer.