Ignore:
Timestamp:
08/12/06 16:35:51 (18 years ago)
Author:
zorg
Message:

Update to 1.2.3 trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/mpcdec/huffman.h

    r7 r10  
    5252typedef struct huffman_type_t {
    5353    mpc_uint32_t  Code;
    54     mpc_uint32_t  Length;
    55     mpc_int32_t   Value;
     54    mpc_uint16_t  Length;
     55    mpc_int16_t   Value;
    5656} HuffmanTyp;
    5757
    58 //! \brief Sorts huffman-tables by codeword.
    59 //!
    60 //! offset resulting value.
    61 //! \param elements
    62 //! \param Table table to sort
    63 //! \param offset offset of resulting sort
    64 void
    65 mpc_decoder_resort_huff_tables(
    66     const mpc_uint32_t elements, HuffmanTyp *Table, const mpc_int32_t offset);
    67 
    68 /// Initializes sv6 huffman decoding structures.
    69 void mpc_decoder_init_huffman_sv6(struct mpc_decoder_t *d);
    70 
    71 /// Initializes sv6 huffman decoding tables.
    72 void mpc_decoder_init_huffman_sv6_tables(struct mpc_decoder_t *d);
    73 
    74 /// Initializes sv7 huffman decoding structures.
    75 void mpc_decoder_init_huffman_sv7(struct mpc_decoder_t *d);
    76 
    77 /// Initializes sv7 huffman decoding tables.
    78 void mpc_decoder_init_huffman_sv7_tables(struct mpc_decoder_t *d);
    79 
    8058#endif // _mpcdec_huffman_h_
Note: See TracChangeset for help on using the changeset viewer.