Changeset f87e191 for src/spectral/dct_ooura.c
- Timestamp:
- Nov 26, 2018, 10:33:30 PM (6 years ago)
- Branches:
- feature/constantq
- Children:
- 868c6b8
- Parents:
- d1d4ad4 (diff), db3eb5c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/dct_ooura.c
rd1d4ad4 rf87e191 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.