home *** CD-ROM | disk | FTP | other *** search
/ Windows Graphics Programming / Feng_Yuan_Win32_GDI_DirectX.iso / Samples / include / jlib / jchuff.h < prev    next >
Text File  |  2000-05-16  |  2KB  |  50 lines

  1. //-------------------------------------------------------------------------//
  2. //          Windows Graphics Programming: Win32 GDI and DirectDraw         //
  3. //                        ISBN  0-13-086985-6                              //
  4. //                                                                         //
  5. //  Modified by: Yuan, Feng                             www.fengyuan.com   //
  6. //  Changes    : C++, exception, in-memory source, BGR byte order          //
  7. //  Version    : 1.00.000, May 31, 2000                                    //
  8. //-------------------------------------------------------------------------//
  9.  
  10. /*
  11.  * jchuff.h
  12.  *
  13.  * Copyright (C) 1991-1997, Thomas G. Lane.
  14.  * This file is part of the Independent JPEG Group's software.
  15.  * For conditions of distribution and use, see the accompanying README file.
  16.  *
  17.  * This file contains declarations for Huffman entropy encoding routines
  18.  * that are shared between the sequential encoder (jchuff.c) and the
  19.  * progressive encoder (jcphuff.c).  No other modules need to see these.
  20.  */
  21.  
  22. /* The legal range of a DCT coefficient is
  23.  *  -1024 .. +1023  for 8-bit data;
  24.  * -16384 .. +16383 for 12-bit data.
  25.  * Hence the magnitude should always fit in 10 or 14 bits respectively.
  26.  */
  27.  
  28. #if BITS_IN_JSAMPLE == 8
  29. #define MAX_COEF_BITS 10
  30. #else
  31. #define MAX_COEF_BITS 14
  32. #endif
  33.  
  34. /* Derived data constructed for each Huffman table */
  35.  
  36. typedef struct {
  37.   unsigned int ehufco[256];    /* code for each symbol */
  38.   char ehufsi[256];        /* length of code for each symbol */
  39.   /* If no code has been allocated for a symbol S, ehufsi[S] contains 0 */
  40. } c_derived_tbl;
  41.  
  42. /* Expand a Huffman table definition into the derived format */
  43. void jpeg_make_c_derived_tbl
  44.     (j_compress_ptr cinfo, boolean isDC, int tblno,
  45.          c_derived_tbl ** pdtbl);
  46.  
  47. /* Generate an optimal table definition given the specified counts */
  48. void jpeg_gen_optimal_table
  49.     (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]);
  50.