Changeset 64 for mppenc/branches/r2d/libmpcenc/huffsv7.c
- Timestamp:
- 09/29/06 16:55:39 (18 years ago)
- Location:
- mppenc/branches/r2d/libmpcenc
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
mppenc/branches/r2d/libmpcenc/huffsv7.c
r58 r64 18 18 */ 19 19 20 #include " mppdec.h"20 #include "libmpcenc.h" 21 21 22 22 Huffman_t HuffHdr [10]; // 9 bit … … 31 31 Huffman_t HuffQ7 [2] [63]; // 8+14 bit 32 32 // 4608 Bytes 33 Uint8_t LUT1_0 [1<< 6];34 Uint8_t LUT1_1 [1<< 9]; // 576 Bytes35 Uint8_t LUT2_0 [1<< 7];36 Uint8_t LUT2_1 [1<<10]; // 1152 Bytes37 Uint8_t LUT3_0 [1<< 4];38 Uint8_t LUT3_1 [1<< 5]; // 48 Bytes39 Uint8_t LUT4_0 [1<< 4];40 Uint8_t LUT4_1 [1<< 5]; // 48 Bytes41 Uint8_t LUT5_0 [1<< 6];42 Uint8_t LUT5_1 [1<< 8]; // 320 Bytes43 Uint8_t LUT6_0 [1<< 7];44 Uint8_t LUT6_1 [1<< 7]; // 256 Bytes45 Uint8_t LUT7_0 [1<< 8];46 Uint8_t LUT7_1 [1<< 8]; // 512 Bytes47 Uint8_t LUTDSCF [1<< 6]; // 64 Bytes = 2976 Bytes33 mpc_uint8_t LUT1_0 [1<< 6]; 34 mpc_uint8_t LUT1_1 [1<< 9]; // 576 Bytes 35 mpc_uint8_t LUT2_0 [1<< 7]; 36 mpc_uint8_t LUT2_1 [1<<10]; // 1152 Bytes 37 mpc_uint8_t LUT3_0 [1<< 4]; 38 mpc_uint8_t LUT3_1 [1<< 5]; // 48 Bytes 39 mpc_uint8_t LUT4_0 [1<< 4]; 40 mpc_uint8_t LUT4_1 [1<< 5]; // 48 Bytes 41 mpc_uint8_t LUT5_0 [1<< 6]; 42 mpc_uint8_t LUT5_1 [1<< 8]; // 320 Bytes 43 mpc_uint8_t LUT6_0 [1<< 7]; 44 mpc_uint8_t LUT6_1 [1<< 7]; // 256 Bytes 45 mpc_uint8_t LUT7_0 [1<< 8]; 46 mpc_uint8_t LUT7_1 [1<< 8]; // 512 Bytes 47 mpc_uint8_t LUTDSCF [1<< 6]; // 64 Bytes = 2976 Bytes 48 48 49 49 const Huffman_t* HuffQ [2] [8] = {
Note: See TracChangeset
for help on using the changeset viewer.