blob: fa4643a4e79b509a042cd33d8f8322817ef104e5 [file] [log] [blame]
Thomas G. Lanebc79e061995-08-02 00:00:00 +00001/*
2 * jchuff.h
3 *
Thomas G. Lane489583f1996-02-07 00:00:00 +00004 * Copyright (C) 1991-1996, Thomas G. Lane.
Thomas G. Lanebc79e061995-08-02 00:00:00 +00005 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
7 *
8 * This file contains declarations for Huffman entropy encoding routines
9 * that are shared between the sequential encoder (jchuff.c) and the
10 * progressive encoder (jcphuff.c). No other modules need to see these.
11 */
12
13/* Derived data constructed for each Huffman table */
14
15typedef struct {
16 unsigned int ehufco[256]; /* code for each symbol */
17 char ehufsi[256]; /* length of code for each symbol */
18 /* If no code has been allocated for a symbol S, ehufsi[S] contains 0 */
19} c_derived_tbl;
20
21/* Short forms of external names for systems with brain-damaged linkers. */
22
23#ifdef NEED_SHORT_EXTERNAL_NAMES
24#define jpeg_make_c_derived_tbl jMkCDerived
25#define jpeg_gen_optimal_table jGenOptTbl
26#endif /* NEED_SHORT_EXTERNAL_NAMES */
27
28/* Expand a Huffman table definition into the derived format */
Thomas G. Lane489583f1996-02-07 00:00:00 +000029EXTERN(void) jpeg_make_c_derived_tbl
30 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, c_derived_tbl ** pdtbl));
Thomas G. Lanebc79e061995-08-02 00:00:00 +000031
32/* Generate an optimal table definition given the specified counts */
Thomas G. Lane489583f1996-02-07 00:00:00 +000033EXTERN(void) jpeg_gen_optimal_table
34 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));