- Timestamp:
- Nov 26, 2018, 4:29:42 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:
- 813ced8
- Parents:
- 7c85c15
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/dct_ooura.c
r7c85c15 rfe6a9a23 39 39 aubio_dct_ooura_t * new_aubio_dct_ooura (uint_t size) { 40 40 aubio_dct_ooura_t * s = AUBIO_NEW(aubio_dct_ooura_t); 41 if (aubio_is_power_of_two(size) != 1 ) {42 AUBIO_ERR("dct : can only create with sizes power of two, requested %d\n",41 if (aubio_is_power_of_two(size) != 1 || (sint_t)size <= 0) { 42 AUBIO_ERR("dct_ooura: can only create with sizes power of two, requested %d\n", 43 43 size); 44 44 goto beach;
Note: See TracChangeset
for help on using the changeset viewer.