Ignore:
Timestamp:
Nov 28, 2016, 2:30:40 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler
Children:
5382846
Parents:
a125fb9a
Message:

src/effects/timestretch*: move out threaded file reading stuff, add _push and _available

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/timestretch_dummy.c

    ra125fb9a r8688797  
    4444
    4545aubio_timestretch_t *
    46 new_aubio_timestretch (const char_t * uri UNUSED, const char_t * method UNUSED,
     46new_aubio_timestretch (const char_t * method UNUSED,
    4747    smpl_t pitchscale UNUSED, uint_t hop_size UNUSED, uint_t samplerate UNUSED)
    4848{
     
    8787}
    8888
    89 uint_t aubio_timestretch_seek(aubio_timestretch_t *o UNUSED, uint_t pos UNUSED) {
     89uint_t aubio_timestretch_reset(aubio_timestretch_t *o UNUSED) {
     90  return AUBIO_FAIL;
     91}
     92
     93sint_t aubio_timestretch_push(aubio_timestretch_t * o UNUSED, fvec_t * in
     94    UNUSED, uint_t length UNUSED) {
     95  return AUBIO_FAIL;
     96}
     97
     98sint_t aubio_timestretch_get_available(aubio_timestretch_t * o UNUSED) {
    9099  return AUBIO_FAIL;
    91100}
Note: See TracChangeset for help on using the changeset viewer.