Ignore:
Timestamp:
10/02/06 20:41:38 (18 years ago)
Author:
r2d
Message:
  • mppenc can be compiled *but* doesn't work (segfault)
  • some variables are not initialized in the libs structs - TO BE FIXED
  • I have duplicated some (one ?) variables in the libs structs and the dup variables in libmpcenc are not used (and not initialized) - TO BE FIXED
File:
1 edited

Legend:

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

    r60 r65  
    174174// generates FFT lookup-tables
    175175void
    176 Init_FFT ( void )
     176Init_FFT ( PsyModel* m )
    177177{
    178178    int     n;
     
    181181
    182182    // normalized hann functions
    183     Window ( Hann_256 ,  256, KBD1 );
    184     Window ( Hann_1024, 1024, KBD2 );
     183    Window ( Hann_256 ,  256, m->KBD1 );
     184    Window ( Hann_1024, 1024, m->KBD2 );
    185185    scale = 0.25 / sqrt (2048.);
    186186    for ( n = 0; n < 800; n++ )
Note: See TracChangeset for help on using the changeset viewer.