3dphotoshoot

annotate libs/libjpeg/jchuff.h @ 14:06dc8b9b4f89

added libimago, libjpeg and libpng
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 07 Jun 2015 17:25:49 +0300
parents
children
rev   line source
nuclear@14 1 /*
nuclear@14 2 * jchuff.h
nuclear@14 3 *
nuclear@14 4 * Copyright (C) 1991-1997, Thomas G. Lane.
nuclear@14 5 * This file is part of the Independent JPEG Group's software.
nuclear@14 6 * For conditions of distribution and use, see the accompanying README file.
nuclear@14 7 *
nuclear@14 8 * This file contains declarations for Huffman entropy encoding routines
nuclear@14 9 * that are shared between the sequential encoder (jchuff.c) and the
nuclear@14 10 * progressive encoder (jcphuff.c). No other modules need to see these.
nuclear@14 11 */
nuclear@14 12
nuclear@14 13 /* The legal range of a DCT coefficient is
nuclear@14 14 * -1024 .. +1023 for 8-bit data;
nuclear@14 15 * -16384 .. +16383 for 12-bit data.
nuclear@14 16 * Hence the magnitude should always fit in 10 or 14 bits respectively.
nuclear@14 17 */
nuclear@14 18
nuclear@14 19 #if BITS_IN_JSAMPLE == 8
nuclear@14 20 #define MAX_COEF_BITS 10
nuclear@14 21 #else
nuclear@14 22 #define MAX_COEF_BITS 14
nuclear@14 23 #endif
nuclear@14 24
nuclear@14 25 /* Derived data constructed for each Huffman table */
nuclear@14 26
nuclear@14 27 typedef struct {
nuclear@14 28 unsigned int ehufco[256]; /* code for each symbol */
nuclear@14 29 char ehufsi[256]; /* length of code for each symbol */
nuclear@14 30 /* If no code has been allocated for a symbol S, ehufsi[S] contains 0 */
nuclear@14 31 } c_derived_tbl;
nuclear@14 32
nuclear@14 33 /* Short forms of external names for systems with brain-damaged linkers. */
nuclear@14 34
nuclear@14 35 #ifdef NEED_SHORT_EXTERNAL_NAMES
nuclear@14 36 #define jpeg_make_c_derived_tbl jMkCDerived
nuclear@14 37 #define jpeg_gen_optimal_table jGenOptTbl
nuclear@14 38 #endif /* NEED_SHORT_EXTERNAL_NAMES */
nuclear@14 39
nuclear@14 40 /* Expand a Huffman table definition into the derived format */
nuclear@14 41 EXTERN(void) jpeg_make_c_derived_tbl
nuclear@14 42 JPP((j_compress_ptr cinfo, boolean isDC, int tblno,
nuclear@14 43 c_derived_tbl ** pdtbl));
nuclear@14 44
nuclear@14 45 /* Generate an optimal table definition given the specified counts */
nuclear@14 46 EXTERN(void) jpeg_gen_optimal_table
nuclear@14 47 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));