Ignore:
Timestamp:
Oct 8, 2016, 7:55:44 PM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler
Children:
1b86a8b
Parents:
b959a8f
Message:

src/synth/sampler.h: improve documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/synth/sampler.h

    rb959a8f r6cc2d9d  
    6464  \return 0 if successful, non-zero otherwise
    6565
     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
    6669*/
    6770uint_t aubio_sampler_load( aubio_sampler_t * o, const char_t * uri );
     
    7477  \return 0 if successfully queued, non-zero otherwise
    7578
     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
    7682*/
    7783uint_t aubio_sampler_queue(aubio_sampler_t * o, const char_t * uri );
     
    8187  \param o sampler, created by new_aubio_sampler()
    8288  \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.
    8594
    8695*/
Note: See TracChangeset for help on using the changeset viewer.