Changeset 7982203 for src/io/source.c


Ignore:
Timestamp:
Mar 22, 2013, 1:41:54 AM (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:
4865e4b
Parents:
2d3212a
Message:

add seek to src/io/source*

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source.c

    r2d3212a r7982203  
    8282}
    8383
     84uint_t aubio_source_seek (aubio_source_t * s, uint_t seek ) {
     85#ifdef __APPLE__
     86  return aubio_source_apple_audio_seek ((aubio_source_apple_audio_t *)s->source, seek);
     87#else /* __APPLE__ */
     88#if HAVE_SNDFILE
     89  return aubio_source_sndfile_seek ((aubio_source_sndfile_t *)s->source, seek);
     90#endif /* HAVE_SNDFILE */
     91#endif /* __APPLE__ */
     92}
Note: See TracChangeset for help on using the changeset viewer.