Ignore:
Timestamp:
10/17/06 16:55:28 (18 years ago)
Author:
r2d
Message:
  • added profile.c in libmpcpsy
File:
1 edited

Legend:

Unmodified
Added
Removed
  • mppenc/branches/r2d/libmpcenc/encode_sv7.c

    r71 r77  
    2626void       Init_Huffman_Encoder_SV7   ( void );
    2727
     28void   Klemm ( void );
     29
     30void   Init_Skalenfaktoren             ( void );
     31
    2832// huffsv7.c
    2933extern Huffman_t         HuffHdr  [10];         // contains tables for SV7-header
     
    5660// initialize SV7
    5761void
    58 Init_SV7 ( void )
     62Init_SV7 ( mpc_encoder_t * e )
    5963{
    6064    Init_Huffman_Encoder_SV7 ();
     65        Init_Skalenfaktoren ();
     66        Klemm    ();
     67
     68        e->dword = 0;
     69        e->filled = 32;
     70        e->Zaehler = 0;
     71        e->BufferedBits = 0;
     72        e->Overflows = 0;
    6173}
    6274
     
    147159
    148160static void
    149 test ( const unsigned int* const Res, const int* q )
     161test ( const int* const Res, const unsigned int* q )
    150162{
    151163#if 0
Note: See TracChangeset for help on using the changeset viewer.