Changeset 382 for libmpc/trunk/libmpcenc


Ignore:
Timestamp:
03/06/08 16:39:07 (17 years ago)
Author:
r2d
Message:

made some const changes

Location:
libmpc/trunk/libmpcenc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libmpc/trunk/libmpcenc/encode_sv7.c

    r359 r382  
    2828
    2929// huffsv7.c
    30 extern const Huffman_t HuffBands [33];
    31 extern const Huffman_t HuffRes [2][17];
    32 extern Huffman_t HuffSCFI_1 [4];         // contains tables for SV7-scalefactor select
    33 extern Huffman_t HuffSCFI_2 [16];         // contains tables for SV7-scalefactor select
    34 extern Huffman_t HuffDSCF_1 [64];         // contains tables for SV7-scalefactor coding
    35 extern Huffman_t HuffDSCF_2 [65];         // contains tables for SV7-scalefactor coding
    36 extern const Huffman_t * HuffQ [2][8];         // points to tables for SV7-sample coding
    37 extern const Huffman_t HuffQ9up [256];
     30extern Huffman_t const HuffBands [33];
     31extern Huffman_t const HuffRes [2][17];
     32extern Huffman_t const HuffSCFI_1 [4];         // contains tables for SV7-scalefactor select
     33extern Huffman_t const HuffSCFI_2 [16];         // contains tables for SV7-scalefactor select
     34extern Huffman_t const HuffDSCF_1 [64];         // contains tables for SV7-scalefactor coding
     35extern Huffman_t const HuffDSCF_2 [65];         // contains tables for SV7-scalefactor coding
     36extern Huffman_t const * const HuffQ [2][8];         // points to tables for SV7-sample coding
     37extern Huffman_t const HuffQ9up [256];
    3838
    3939/*
  • libmpc/trunk/libmpcenc/huffsv7.c

    r161 r382  
    104104};
    105105
    106 const Huffman_t* HuffQ [2] [8] = {
     106Huffman_t const * const HuffQ [2] [8] = {
    107107        { HuffQ1, HuffQ2[0], HuffQ3, HuffQ4, HuffQ5[0], HuffQ6[0], HuffQ7[0], HuffQ8[0] },
    108108        { HuffQ1, HuffQ2[1], HuffQ3, HuffQ4, HuffQ5[1], HuffQ6[1], HuffQ7[1], HuffQ8[1] }
Note: See TracChangeset for help on using the changeset viewer.