Changeset 0f2c1f4
- Timestamp:
- Jan 12, 2017, 10:58:33 PM (8 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, sampler, yinfft+
- Children:
- 4cb7a0a
- Parents:
- 1160f11
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchyinfft.c
r1160f11 r0f2c1f4 63 63 p->winput = new_fvec (bufsize); 64 64 p->fft = new_aubio_fft (bufsize); 65 if (!p->fft) goto beach; 65 66 p->fftout = new_fvec (bufsize); 66 67 p->sqrmag = new_fvec (bufsize); … … 96 97 p->short_period = (uint_t)ROUND(samplerate / 1300.); 97 98 return p; 99 100 beach: 101 if (p->winput) del_fvec(p->winput); 102 AUBIO_FREE(p); 103 return NULL; 98 104 } 99 105
Note: See TracChangeset
for help on using the changeset viewer.