Changeset 6cc2d9d
- Timestamp:
- Oct 8, 2016, 7:55:44 PM (8 years ago)
- Branches:
- sampler
- Children:
- 1b86a8b
- Parents:
- b959a8f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/synth/sampler.h
rb959a8f r6cc2d9d 64 64 \return 0 if successful, non-zero otherwise 65 65 66 This function attempts to load a new source, swaps the current one with the 67 newly loaded one (or NULL if loading failed), then delete the old one. 68 66 69 */ 67 70 uint_t aubio_sampler_load( aubio_sampler_t * o, const char_t * uri ); … … 74 77 \return 0 if successfully queued, non-zero otherwise 75 78 79 This function is identical to aubio_sampler_load(), except it will be called 80 in its own thread to avoid blocking calls to aubio_sampler_do(). 81 76 82 */ 77 83 uint_t aubio_sampler_queue(aubio_sampler_t * o, const char_t * uri ); … … 81 87 \param o sampler, created by new_aubio_sampler() 82 88 \param output output of the sampler 83 84 This function get new samples from the playing source into output. 89 \param read number of samples actually read 90 91 This function get new samples from the sampler and store them into output. 92 93 The output vector will be completed with 0 if too few samples are available. 85 94 86 95 */
Note: See TracChangeset
for help on using the changeset viewer.