javazoom.jl.decoder.huffcodetab.huffcodetab C# (CSharp) Method

huffcodetab() private method

Big Constructor : Computes all Huffman Tables.
private huffcodetab ( System S, int XLEN, int YLEN, int LINBITS, int LINMAX, int REF, int TABLE, int HLEN, int VAL, int TREELEN ) : System
S System
XLEN int
YLEN int
LINBITS int
LINMAX int
REF int
TABLE int
HLEN int
VAL int
TREELEN int
return System
        private huffcodetab(System.String S, int XLEN, int YLEN, int LINBITS, int LINMAX, int REF, int[] TABLE, int[] HLEN, int[][] VAL, int TREELEN)
        {
            tablename0 = S[0];
            tablename1 = S[1];
            tablename2 = S[2];
            xlen = XLEN;
            ylen = YLEN;
            linbits = LINBITS;
            linmax = LINMAX;
            ref_Renamed = REF;
            table = TABLE;
            hlen = HLEN;
            val = VAL;
            treelen = TREELEN;
        }

Same methods

huffcodetab::huffcodetab ( ) : System