Changeset f6c4c1c


Ignore:
Timestamp:
Sep 17, 2016, 1:44:22 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
Children:
af24139
Parents:
732cf3a
Message:

src/effects/pitchshift.c: add some comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift.c

    r732cf3a rf6c4c1c  
    145145
    146146#else
     147
     148// TODO fallback pitch shifting implementation
     149
    147150struct _aubio_pitchshift_t
    148151{
     
    154157}
    155158
    156 void del_aubio_pitchshift (aubio_pitchshift_t * o UNUSED) {}
     159void del_aubio_pitchshift (aubio_pitchshift_t * o UNUSED) {
     160}
    157161
    158162aubio_pitchshift_t *new_aubio_pitchshift (const char_t * method UNUSED,
     
    162166  return NULL;
    163167}
     168
    164169uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o UNUSED, smpl_t pitchscale UNUSED)
    165170{
    166171  return AUBIO_FAIL;
    167172}
     173
    168174smpl_t aubio_pitchshift_get_pitchscale (aubio_pitchshift_t * o UNUSED)
    169175{
    170176  return 1.;
    171177}
     178
    172179uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o UNUSED, smpl_t transpose UNUSED) {
    173180  return AUBIO_FAIL;
    174181}
     182
    175183smpl_t aubio_pitchshift_get_transpose (aubio_pitchshift_t * o UNUSED) {
    176184  return 0.;
    177185}
     186
     187// end of dummy implementation
     188
    178189#endif /* HAVE_RUBBERBAND */
Note: See TracChangeset for help on using the changeset viewer.