Changes in src/synth/sampler.h [b235c0e:6f42c16]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/synth/sampler.h
rb235c0e r6f42c16 19 19 */ 20 20 21 #ifndef _AUBIO_SAMPLER_H22 #define _AUBIO_SAMPLER_H21 #ifndef AUBIO_SAMPLER_H 22 #define AUBIO_SAMPLER_H 23 23 24 24 /** \file … … 60 60 61 61 */ 62 uint_t aubio_sampler_load( aubio_sampler_t * o, c har_t * uri );62 uint_t aubio_sampler_load( aubio_sampler_t * o, const char_t * uri ); 63 63 64 64 /** process sampler function … … 74 74 75 75 */ 76 void aubio_sampler_do ( aubio_sampler_t * o, fvec_t * input, fvec_t * output);76 void aubio_sampler_do ( aubio_sampler_t * o, const fvec_t * input, fvec_t * output); 77 77 78 78 /** process sampler function, multiple channels … … 88 88 89 89 */ 90 void aubio_sampler_do_multi ( aubio_sampler_t * o, fmat_t * input, fmat_t * output);90 void aubio_sampler_do_multi ( aubio_sampler_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_sampler_get_playing ( aubio_sampler_t * o );99 uint_t aubio_sampler_get_playing ( const aubio_sampler_t * o ); 100 100 101 101 /** set current playing state … … 138 138 #endif 139 139 140 #endif /* _AUBIO_SAMPLER_H */140 #endif /* AUBIO_SAMPLER_H */
Note: See TracChangeset
for help on using the changeset viewer.