Changeset 155cc10 for src/utils/parameter.h
- Timestamp:
- Mar 10, 2017, 2:26:32 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/applefworks, fix/ffmpeg5, master, sampler
- Children:
- ee8a57c
- Parents:
- 00d0275 (diff), 67b6618 (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/utils/parameter.h
r00d0275 r155cc10 19 19 */ 20 20 21 #ifndef _AUBIO_PARAMETER_H22 #define _AUBIO_PARAMETER_H21 #ifndef AUBIO_PARAMETER_H 22 #define AUBIO_PARAMETER_H 23 23 24 24 /** \file … … 77 77 78 78 */ 79 smpl_t aubio_parameter_get_current_value ( aubio_parameter_t * param );79 smpl_t aubio_parameter_get_current_value ( const aubio_parameter_t * param ); 80 80 81 81 /** set current parameter value, skipping interpolation … … 106 106 107 107 */ 108 uint_t aubio_parameter_get_steps ( aubio_parameter_t * param);108 uint_t aubio_parameter_get_steps ( const aubio_parameter_t * param); 109 109 110 110 /** set minimum value of this parameter … … 125 125 126 126 */ 127 smpl_t aubio_parameter_get_min_value ( aubio_parameter_t * param );127 smpl_t aubio_parameter_get_min_value ( const aubio_parameter_t * param ); 128 128 129 129 /** set maximum value of this parameter … … 144 144 145 145 */ 146 smpl_t aubio_parameter_get_max_value ( aubio_parameter_t * param );146 smpl_t aubio_parameter_get_max_value ( const aubio_parameter_t * param ); 147 147 148 148 /** destroy ::aubio_parameter_t object … … 157 157 #endif 158 158 159 #endif /* _AUBIO_PARAMETER_H */159 #endif /* AUBIO_PARAMETER_H */
Note: See TracChangeset
for help on using the changeset viewer.