Ignore:
Timestamp:
Mar 18, 2013, 5:19:23 PM (11 years ago)
Author:
Paul Brossier <piem@piem.org>
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
Message:

src/io: use hop_size, not block_size

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_sndfile.h

    rab7b1b7 r6a03729  
    4848  \param uri the file path or uri to read from
    4949  \param samplerate sampling rate to view the fie at
    50   \param block_size the size of the blocks to read from
     50  \param hop_size the size of the blocks to read from
    5151
    5252  Creates a new source object. If `0` is passed as `samplerate`, the sample
     
    5757
    5858*/
    59 aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * uri, uint_t samplerate, uint_t block_size);
     59aubio_source_sndfile_t * new_aubio_source_sndfile(char_t * uri, uint_t samplerate, uint_t hop_size);
    6060
    6161/**
    6262
    63   read monophonic vector of length block_size from source object
     63  read monophonic vector of length hop_size from source object
    6464
    6565  \param s source object, created with ::new_aubio_source_sndfile
     
    6868
    6969  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.
    7171
    7272*/
Note: See TracChangeset for help on using the changeset viewer.