- 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
- Location:
- src/io
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/io/source.h
rab7b1b7 r6a03729 43 43 \param uri the file path or uri to read from 44 44 \param samplerate sampling rate to view the fie at 45 \param block_size the size of the blocks to read from45 \param hop_size the size of the blocks to read from 46 46 47 47 Creates a new source object. If `0` is passed as `samplerate`, the sample … … 52 52 53 53 */ 54 aubio_source_t * new_aubio_source(char_t * uri, uint_t samplerate, uint_t block_size);54 aubio_source_t * new_aubio_source(char_t * uri, uint_t samplerate, uint_t hop_size); 55 55 56 56 /** 57 57 58 read monophonic vector of length block_size from source object58 read monophonic vector of length hop_size from source object 59 59 60 60 \param s source object, created with ::new_aubio_source … … 63 63 64 64 Upon returns, `read` contains the number of frames actually read from the 65 source. ` block_size` if enough frames could be read, less otherwise.65 source. `hop_size` if enough frames could be read, less otherwise. 66 66 67 67 */ -
src/io/source_apple_audio.h
rab7b1b7 r6a03729 49 49 \param uri the file path or uri to read from 50 50 \param samplerate sampling rate to view the fie at 51 \param block_size the size of the blocks to read from51 \param hop_size the size of the blocks to read from 52 52 53 53 Creates a new source object. If `0` is passed as `samplerate`, the sample … … 58 58 59 59 */ 60 aubio_source_apple_audio_t * new_aubio_source_apple_audio(char_t * uri, uint_t samplerate, uint_t block_size);60 aubio_source_apple_audio_t * new_aubio_source_apple_audio(char_t * uri, uint_t samplerate, uint_t hop_size); 61 61 62 62 /** 63 63 64 read monophonic vector of length block_size from source object64 read monophonic vector of length hop_size from source object 65 65 66 66 \param s source object, created with ::new_aubio_source_apple_audio … … 69 69 70 70 Upon returns, `read` contains the number of frames actually read from the 71 source. ` block_size` if enough frames could be read, less otherwise.71 source. `hop_size` if enough frames could be read, less otherwise. 72 72 73 73 */ 74 74 void aubio_source_apple_audio_do(aubio_source_apple_audio_t * s, fvec_t * read_to, uint_t * read); 75 void aubio_source_apple_audio_do_multi(aubio_source_apple_audio_t * s, fmat_t * read_to, uint_t * read); 75 76 76 77 /** -
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.