Changeset 6a03729 for src/io/source_sndfile.h
- Timestamp:
- Mar 18, 2013, 5:19:23 PM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 7125680
- Parents:
- ab7b1b7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source_sndfile.h
rab7b1b7 r6a03729 48 48 \param uri the file path or uri to read from 49 49 \param samplerate sampling rate to view the fie at 50 \param block_size the size of the blocks to read from50 \param hop_size the size of the blocks to read from 51 51 52 52 Creates a new source object. If `0` is passed as `samplerate`, the sample … … 57 57 58 58 */ 59 aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * uri, uint_t samplerate, uint_t block_size);59 aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * uri, uint_t samplerate, uint_t hop_size); 60 60 61 61 /** 62 62 63 read monophonic vector of length block_size from source object63 read monophonic vector of length hop_size from source object 64 64 65 65 \param s source object, created with ::new_aubio_source_sndfile … … 68 68 69 69 Upon returns, `read` contains the number of frames actually read from the 70 source. ` block_size` if enough frames could be read, less otherwise.70 source. `hop_size` if enough frames could be read, less otherwise. 71 71 72 72 */
Note: See TracChangeset
for help on using the changeset viewer.