- Timestamp:
- Sep 17, 2016, 1:44:22 AM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- af24139
- Parents:
- 732cf3a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift.c
r732cf3a rf6c4c1c 145 145 146 146 #else 147 148 // TODO fallback pitch shifting implementation 149 147 150 struct _aubio_pitchshift_t 148 151 { … … 154 157 } 155 158 156 void del_aubio_pitchshift (aubio_pitchshift_t * o UNUSED) {} 159 void del_aubio_pitchshift (aubio_pitchshift_t * o UNUSED) { 160 } 157 161 158 162 aubio_pitchshift_t *new_aubio_pitchshift (const char_t * method UNUSED, … … 162 166 return NULL; 163 167 } 168 164 169 uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o UNUSED, smpl_t pitchscale UNUSED) 165 170 { 166 171 return AUBIO_FAIL; 167 172 } 173 168 174 smpl_t aubio_pitchshift_get_pitchscale (aubio_pitchshift_t * o UNUSED) 169 175 { 170 176 return 1.; 171 177 } 178 172 179 uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o UNUSED, smpl_t transpose UNUSED) { 173 180 return AUBIO_FAIL; 174 181 } 182 175 183 smpl_t aubio_pitchshift_get_transpose (aubio_pitchshift_t * o UNUSED) { 176 184 return 0.; 177 185 } 186 187 // end of dummy implementation 188 178 189 #endif /* HAVE_RUBBERBAND */
Note: See TracChangeset
for help on using the changeset viewer.