Changes in src/synth/wavetable.h [b235c0e:6f42c16]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/synth/wavetable.h
rb235c0e r6f42c16 19 19 */ 20 20 21 #ifndef _AUBIO_WAVETABLE_H22 #define _AUBIO_WAVETABLE_H21 #ifndef AUBIO_WAVETABLE_H 22 #define AUBIO_WAVETABLE_H 23 23 24 24 /** \file … … 60 60 61 61 */ 62 uint_t aubio_wavetable_load( aubio_wavetable_t * o, c har_t * uri );62 uint_t aubio_wavetable_load( aubio_wavetable_t * o, const char_t * uri ); 63 63 64 64 /** process wavetable function … … 74 74 75 75 */ 76 void aubio_wavetable_do ( aubio_wavetable_t * o, fvec_t * input, fvec_t * output);76 void aubio_wavetable_do ( aubio_wavetable_t * o, const fvec_t * input, fvec_t * output); 77 77 78 78 /** process wavetable function, multiple channels … … 88 88 89 89 */ 90 void aubio_wavetable_do_multi ( aubio_wavetable_t * o, fmat_t * input, fmat_t * output);90 void aubio_wavetable_do_multi ( aubio_wavetable_t * o, const fmat_t * input, fmat_t * output); 91 91 92 92 /** get current playing state … … 97 97 98 98 */ 99 uint_t aubio_wavetable_get_playing ( aubio_wavetable_t * o );99 uint_t aubio_wavetable_get_playing ( const aubio_wavetable_t * o ); 100 100 101 101 /** set current playing state … … 144 144 145 145 */ 146 smpl_t aubio_wavetable_get_freq ( aubio_wavetable_t * o);146 smpl_t aubio_wavetable_get_freq ( const aubio_wavetable_t * o); 147 147 148 148 /** set wavetable amplitude … … 163 163 164 164 */ 165 smpl_t aubio_wavetable_get_amp ( aubio_wavetable_t * o);165 smpl_t aubio_wavetable_get_amp ( const aubio_wavetable_t * o); 166 166 167 167 /** destroy aubio_wavetable_t object … … 176 176 #endif 177 177 178 #endif /* _AUBIO_WAVETABLE_H */178 #endif /* AUBIO_WAVETABLE_H */
Note: See TracChangeset
for help on using the changeset viewer.