Ignore:
Timestamp:
09/29/06 16:55:39 (18 years ago)
Author:
r2d
Message:
  • added libmpcenc and a common directory
  • can compile libmpcenc and libmpcpsy don't know about linking
Location:
mppenc/branches/r2d/libmpcenc
Files:
1 added
1 moved

Legend:

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

    r58 r64  
    1818 */
    1919
    20 #include "mppdec.h"
     20#include "libmpcenc.h"
    2121
    2222Huffman_t   HuffHdr    [10];            // 9 bit
     
    3131Huffman_t   HuffQ7 [2] [63];            // 8+14 bit
    3232                                        // 4608 Bytes
    33 Uint8_t     LUT1_0  [1<< 6];
    34 Uint8_t     LUT1_1  [1<< 9];            //  576 Bytes
    35 Uint8_t     LUT2_0  [1<< 7];
    36 Uint8_t     LUT2_1  [1<<10];            // 1152 Bytes
    37 Uint8_t     LUT3_0  [1<< 4];
    38 Uint8_t     LUT3_1  [1<< 5];            //   48 Bytes
    39 Uint8_t     LUT4_0  [1<< 4];
    40 Uint8_t     LUT4_1  [1<< 5];            //   48 Bytes
    41 Uint8_t     LUT5_0  [1<< 6];
    42 Uint8_t     LUT5_1  [1<< 8];            //  320 Bytes
    43 Uint8_t     LUT6_0  [1<< 7];
    44 Uint8_t     LUT6_1  [1<< 7];            //  256 Bytes
    45 Uint8_t     LUT7_0  [1<< 8];
    46 Uint8_t     LUT7_1  [1<< 8];            //  512 Bytes
    47 Uint8_t     LUTDSCF [1<< 6];            //   64 Bytes = 2976 Bytes
     33mpc_uint8_t     LUT1_0  [1<< 6];
     34mpc_uint8_t     LUT1_1  [1<< 9];            //  576 Bytes
     35mpc_uint8_t     LUT2_0  [1<< 7];
     36mpc_uint8_t     LUT2_1  [1<<10];            // 1152 Bytes
     37mpc_uint8_t     LUT3_0  [1<< 4];
     38mpc_uint8_t     LUT3_1  [1<< 5];            //   48 Bytes
     39mpc_uint8_t     LUT4_0  [1<< 4];
     40mpc_uint8_t     LUT4_1  [1<< 5];            //   48 Bytes
     41mpc_uint8_t     LUT5_0  [1<< 6];
     42mpc_uint8_t     LUT5_1  [1<< 8];            //  320 Bytes
     43mpc_uint8_t     LUT6_0  [1<< 7];
     44mpc_uint8_t     LUT6_1  [1<< 7];            //  256 Bytes
     45mpc_uint8_t     LUT7_0  [1<< 8];
     46mpc_uint8_t     LUT7_1  [1<< 8];            //  512 Bytes
     47mpc_uint8_t     LUTDSCF [1<< 6];            //   64 Bytes = 2976 Bytes
    4848
    4949const Huffman_t* HuffQ [2] [8] = {
Note: See TracChangeset for help on using the changeset viewer.