Changes in src/io/source_sndfile.h [3d2fe26:6a03729]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_sndfile.h
r3d2fe26 r6a03729 75 75 /** 76 76 77 read polyphonic vector of length hop_size from source object78 79 \param s source object, created with ::new_aubio_source_sndfile80 \param read_to ::fmat_t of data to read to81 \param read upon returns, equals to number of frames actually read82 83 Upon returns, `read` contains the number of frames actually read from the84 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 91 77 get samplerate of source object 92 78 … … 96 82 */ 97 83 uint_t aubio_source_sndfile_get_samplerate(aubio_source_sndfile_t * s); 98 99 /**100 101 get number of channels of source object102 103 \param s source object, created with ::new_aubio_source_sndfile104 \return number of channels105 106 */107 uint_t aubio_source_sndfile_get_channels (aubio_source_sndfile_t * s);108 109 /**110 111 seek source object112 113 \param s source object, created with ::new_aubio_source_sndfile114 \param pos position to seek to, in frames115 116 \return 0 if sucessful, non-zero on failure117 118 */119 uint_t aubio_source_sndfile_seek (aubio_source_sndfile_t *s, uint_t pos);120 84 121 85 /**
Note: See TracChangeset
for help on using the changeset viewer.