Changeset f7af440
- Timestamp:
- Nov 17, 2018, 7:46:51 PM (6 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
- Children:
- b41672c
- Parents:
- 62c2d00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/src/temporal/test-filter.c
r62c2d00 rf7af440 9 9 10 10 aubio_filter_t *o = new_aubio_filter_c_weighting (44100); 11 12 if (aubio_filter_set_c_weighting (o, -1) == 0) 13 return 1; 14 if (aubio_filter_set_c_weighting (0, 32000) == 0) 15 return 1; 16 11 17 in->data[impulse_at] = 0.5; 12 18 fvec_print (in); … … 16 22 17 23 o = new_aubio_filter_a_weighting (32000); 24 25 if (aubio_filter_set_a_weighting (o, -1) == 0) 26 return 1; 27 if (aubio_filter_set_a_weighting (0, 32000) == 0) 28 return 1; 29 18 30 in->data[impulse_at] = 0.5; 19 31 fvec_print (in);
Note: See TracChangeset
for help on using the changeset viewer.