jchuff.h
上传用户:zlh9724
上传日期:2007-01-04
资源大小:1991k
文件大小:1k
源码类别:

浏览器

开发平台:

Unix_Linux

  1. /*
  2.  * jchuff.h
  3.  *
  4.  * Copyright (C) 1991-1995, Thomas G. Lane.
  5.  * 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. /* Derived data constructed for each Huffman table */
  13. typedef struct {
  14.   unsigned int ehufco[256]; /* code for each symbol */
  15.   char ehufsi[256]; /* length of code for each symbol */
  16.   /* If no code has been allocated for a symbol S, ehufsi[S] contains 0 */
  17. } c_derived_tbl;
  18. /* Short forms of external names for systems with brain-damaged linkers. */
  19. #ifdef NEED_SHORT_EXTERNAL_NAMES
  20. #define jpeg_make_c_derived_tbl jMkCDerived
  21. #define jpeg_gen_optimal_table jGenOptTbl
  22. #endif /* NEED_SHORT_EXTERNAL_NAMES */
  23. /* Expand a Huffman table definition into the derived format */
  24. EXTERN void jpeg_make_c_derived_tbl JPP((j_compress_ptr cinfo,
  25. JHUFF_TBL * htbl, c_derived_tbl ** pdtbl));
  26. /* Generate an optimal table definition given the specified counts */
  27. EXTERN void jpeg_gen_optimal_table JPP((j_compress_ptr cinfo,
  28. JHUFF_TBL * htbl, long freq[]));