Changeset db3eb5c


Ignore:
Timestamp:
Nov 26, 2018, 6:33:26 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:
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.
Message:

Merge branch 'feature/dctsimplify' into feature/mfcc_tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/dct.c

    rb174319 rdb3eb5c  
    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.