- Timestamp:
- Nov 26, 2018, 6:33:26 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:
- bbfa9a4, c0429d4, f87e191
- Parents:
- b174319 (diff), e680926 (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.c
rb174319 rdb3eb5c 88 88 uint_t radix = size; 89 89 uint_t order = 0; 90 while ((radix / 2) * 2 == radix) {90 while ((radix >= 1) && ((radix / 2) * 2 == radix)) { 91 91 radix /= 2; 92 92 order++;
Note: See TracChangeset
for help on using the changeset viewer.