Changeset f264b17 for src/temporal/filter.h
- Timestamp:
- Jun 22, 2016, 1:00:10 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:
- 4b9443c4
- Parents:
- 60fc05b (diff), 6769586 (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/filter.h
r60fc05b rf264b17 19 19 */ 20 20 21 #ifndef _AUBIO_FILTER_H22 #define _AUBIO_FILTER_H21 #ifndef AUBIO_FILTER_H 22 #define AUBIO_FILTER_H 23 23 24 24 /** \file … … 87 87 88 88 */ 89 void aubio_filter_do_outplace (aubio_filter_t * f, fvec_t * in, fvec_t * out);89 void aubio_filter_do_outplace (aubio_filter_t * f, const fvec_t * in, fvec_t * out); 90 90 91 91 /** filter input vector forward and backward … … 105 105 106 106 */ 107 lvec_t *aubio_filter_get_feedback ( aubio_filter_t * f);107 lvec_t *aubio_filter_get_feedback (const aubio_filter_t * f); 108 108 109 109 /** returns a pointer to feedforward coefficients \f$ b_i \f$ … … 114 114 115 115 */ 116 lvec_t *aubio_filter_get_feedforward ( aubio_filter_t * f);116 lvec_t *aubio_filter_get_feedforward (const aubio_filter_t * f); 117 117 118 118 /** get order of the filter … … 123 123 124 124 */ 125 uint_t aubio_filter_get_order ( aubio_filter_t * f);125 uint_t aubio_filter_get_order (const aubio_filter_t * f); 126 126 127 127 /** get sampling rate of the filter … … 132 132 133 133 */ 134 uint_t aubio_filter_get_samplerate ( aubio_filter_t * f);134 uint_t aubio_filter_get_samplerate (const aubio_filter_t * f); 135 135 136 136 /** get sampling rate of the filter … … 174 174 #endif 175 175 176 #endif /* _AUBIO_FILTER_H */176 #endif /* AUBIO_FILTER_H */
Note: See TracChangeset
for help on using the changeset viewer.