Changeset 313eb2b


Ignore:
Timestamp:
Nov 21, 2018, 8:55:09 PM (5 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
Children:
8924bdf
Parents:
afe90ee
Message:

[wavetable] add dummy load implementation, add todo entry in documentation

Location:
src/synth
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/synth/wavetable.c

    rafe90ee r313eb2b  
    168168}
    169169
     170uint_t
     171aubio_wavetable_load ( aubio_wavetable_t *s UNUSED, const char_t *uri UNUSED)
     172{
     173  AUBIO_ERR("wavetable: load method not implemented yet, see sampler\n");
     174  return AUBIO_FAIL;
     175}
     176
    170177uint_t aubio_wavetable_set_freq ( aubio_wavetable_t * s, smpl_t freq )
    171178{
  • src/synth/wavetable.h

    rafe90ee r313eb2b  
    5353
    5454/** load source in wavetable
     55
     56  \TODO This function is not implemented yet. See new_aubio_sampler() instead.
    5557
    5658  \param o wavetable, created by new_aubio_wavetable()
Note: See TracChangeset for help on using the changeset viewer.