Changeset e680926


Ignore:
Timestamp:
Nov 26, 2018, 6:22:06 PM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
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:
db3eb5c
Parents:
d050d02
Message:

[dct] fix radix check for accelerate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/dct.c

    rd050d02 re680926  
    8888    uint_t radix = size;
    8989    uint_t order = 0;
    90     while ((radix / 2) * 2 == radix) {
     90    while ((radix >= 1) && ((radix / 2) * 2 == radix)) {
    9191      radix /= 2;
    9292      order++;
Note: See TracChangeset for help on using the changeset viewer.