Changes in / [b174319:db3eb5c]


Ignore:
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.