Ignore:
Timestamp:
09/28/06 18:15:21 (18 years ago)
Author:
r2d
Message:

added a PsyModel struct, too much members in it. some will be removed later

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mppenc/branches/r2d/libmpcpsy/fft_routines.c

    r59 r60  
    1818 */
    1919
    20 #include "mppenc.h"
     20#include "libmpcpsy.h"
     21
     22#include <math.h>
     23#include <string.h>
    2124
    2225#define CX0     -1.
     
    196199    int           i;
    197200
    198     ENTER(40);
    199201    // windowing
    200202    i = 256;
     
    212214        aix += 2;
    213215    }
    214     LEAVE(40);
    215216}
    216217
     
    224225    int           i;
    225226
    226     ENTER(41);
    227227    i = 1024;                   // windowing
    228228    while (i--)
     
    246246        aix += 2;
    247247    }
    248     LEAVE(41);
    249248}
    250249
     
    258257    int           i;
    259258
    260     ENTER(42);
    261259    // windowing (only 1600 samples available -> centered in 2048!)
    262260    memset ( a     , 0, 224*sizeof(*a) );
     
    275273        aix += 2;
    276274    }
    277     LEAVE(42);
    278275}
    279276
     
    289286    int           i;
    290287
    291     ENTER(43);
    292288    i = 1024;                   // windowing
    293289    while (i--)
     
    304300        aix += 2;
    305301    }
    306     LEAVE(43);
    307302}
    308303
     
    316311    int     i;
    317312
    318     ENTER(44);
    319313    // generate real, even spectrum (symmetric around 1024, cep[2048-i] = cep[i])
    320314    for ( i = 0; i < 1024; i++ )
     
    334328        bix += 2;
    335329    }
    336     LEAVE(44);
    337 }
     330}
Note: See TracChangeset for help on using the changeset viewer.