Changeset 23493b5 for src/temporal/filter.c
- Timestamp:
- Apr 21, 2016, 7:11:55 PM (9 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:
- eaee767
- Parents:
- 69f74f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/temporal/filter.c
r69f74f0 r23493b5 40 40 41 41 void 42 aubio_filter_do_outplace (aubio_filter_t * f, fvec_t * in, fvec_t * out)42 aubio_filter_do_outplace (aubio_filter_t * f, const fvec_t * in, fvec_t * out) 43 43 { 44 44 fvec_copy (in, out); … … 94 94 95 95 lvec_t * 96 aubio_filter_get_feedback ( aubio_filter_t * f)96 aubio_filter_get_feedback (const aubio_filter_t * f) 97 97 { 98 98 return f->a; … … 100 100 101 101 lvec_t * 102 aubio_filter_get_feedforward ( aubio_filter_t * f)102 aubio_filter_get_feedforward (const aubio_filter_t * f) 103 103 { 104 104 return f->b; … … 106 106 107 107 uint_t 108 aubio_filter_get_order ( aubio_filter_t * f)108 aubio_filter_get_order (const aubio_filter_t * f) 109 109 { 110 110 return f->order; … … 112 112 113 113 uint_t 114 aubio_filter_get_samplerate ( aubio_filter_t * f)114 aubio_filter_get_samplerate (const aubio_filter_t * f) 115 115 { 116 116 return f->samplerate;
Note: See TracChangeset
for help on using the changeset viewer.