Ejemplo n.º 1
0
/* ------------------------------------------------------------------------ */
void
decode_start_dyn(void)
{
	n_max = 286;
	maxmatch = MAXMATCH;
	init_getbits();
	start_c_dyn();
	start_p_dyn();
}
Ejemplo n.º 2
0
void
encode_start_fix( /*void*/ )
{
    n_max = 314;
    maxmatch = 60;
    np = 1 << (12 - 6);
    init_putbits();
    start_c_dyn();
    ready_made(0);
}
Ejemplo n.º 3
0
/* lh2 */
void
decode_start_dyn( /* void */ )
{
    n_max = 286;
    maxmatch = MAXMATCH;
    init_getbits();
    init_code_cache();
    start_c_dyn();
    start_p_dyn();
}
Ejemplo n.º 4
0
/* ------------------------------------------------------------------------ */
void
decode_start_fix(/*void*/)
{
    n_max = 314;
    maxmatch = 60;
    init_getbits();
    np = 1 << (12 - 6);
    start_c_dyn();
    ready_made(0);
    lha_make_table(np, pt_len, 8, pt_table);
}