Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_sndfile.h

    r3d2fe26 r6a03729  
    7575/**
    7676
    77   read polyphonic vector of length hop_size from source object
    78 
    79   \param s source object, created with ::new_aubio_source_sndfile
    80   \param read_to ::fmat_t of data to read to
    81   \param read upon returns, equals to number of frames actually read
    82 
    83   Upon returns, `read` contains the number of frames actually read from the
    84   source. `hop_size` if enough frames could be read, less otherwise.
    85 
    86 */
    87 void aubio_source_sndfile_do_multi(aubio_source_sndfile_t * s, fmat_t * read_to, uint_t * read);
    88 
    89 /**
    90 
    9177  get samplerate of source object
    9278
     
    9682*/
    9783uint_t aubio_source_sndfile_get_samplerate(aubio_source_sndfile_t * s);
    98 
    99 /**
    100 
    101   get number of channels of source object
    102 
    103   \param s source object, created with ::new_aubio_source_sndfile
    104   \return number of channels
    105 
    106 */
    107 uint_t aubio_source_sndfile_get_channels (aubio_source_sndfile_t * s);
    108 
    109 /**
    110 
    111   seek source object
    112 
    113   \param s source object, created with ::new_aubio_source_sndfile
    114   \param pos position to seek to, in frames
    115 
    116   \return 0 if sucessful, non-zero on failure
    117 
    118 */
    119 uint_t aubio_source_sndfile_seek (aubio_source_sndfile_t *s, uint_t pos);
    12084
    12185/**
Note: See TracChangeset for help on using the changeset viewer.