- Timestamp:
- Nov 26, 2018, 4:59:56 PM (6 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
- Children:
- d050d02
- Parents:
- 5c3061e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/dct_fftw.c
r5c3061e r63c5015 64 64 aubio_dct_fftw_t * new_aubio_dct_fftw (uint_t size) { 65 65 aubio_dct_fftw_t * s = AUBIO_NEW(aubio_dct_fftw_t); 66 if (!s) { 66 if ((sint_t)size <= 0) { 67 AUBIO_ERR("dct_fftw: can only create with size > 0, requested %d\n", 68 size); 67 69 goto beach; 68 70 }
Note: See TracChangeset
for help on using the changeset viewer.