Changeset 741bdda for src/temporal/a_weighting.c
- Timestamp:
- Dec 4, 2009, 1:39:30 AM (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:
- d207300
- Parents:
- d95ff38
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/temporal/a_weighting.c
rd95ff38 r741bdda 32 32 lvec_t *bs = aubio_filter_get_feedforward (f); 33 33 lvec_t *as = aubio_filter_get_feedback (f); 34 lsmp_t *b = bs->data [0], *a = as->data[0];34 lsmp_t *b = bs->data, *a = as->data; 35 35 uint_t order = aubio_filter_get_order (f); 36 36 … … 241 241 242 242 aubio_filter_t * 243 new_aubio_filter_a_weighting (uint_t channels, uint_tsamplerate)243 new_aubio_filter_a_weighting (uint_t samplerate) 244 244 { 245 aubio_filter_t *f = new_aubio_filter (7 , channels);245 aubio_filter_t *f = new_aubio_filter (7); 246 246 aubio_filter_set_a_weighting (f, samplerate); 247 247 return f;
Note: See TracChangeset
for help on using the changeset viewer.