Files
cdesktop/cde/lib/DtHelp/il/iljpgdecodeint.h
2018-04-28 12:30:20 -06:00

142 lines
4.7 KiB
C

/*
* CDE - Common Desktop Environment
*
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these libraries and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
/* $XConsortium: iljpgdecodeint.h /main/3 1995/10/23 15:54:54 rswiston $ */
/**---------------------------------------------------------------------
***
*** (c)Copyright 1992 Hewlett-Packard Co.
***
*** RESTRICTED RIGHTS LEGEND
*** Use, duplication, or disclosure by the U.S. Government is subject to
*** restrictions as set forth in sub-paragraph (c)(1)(ii) of the Rights in
*** Technical Data and Computer Software clause in DFARS 252.227-7013.
*** Hewlett-Packard Company
*** 3000 Hanover Street
*** Palo Alto, CA 94304 U.S.A.
*** Rights for non-DOD U.S. Government Departments and Agencies are as set
*** forth in FAR 52.227-19(c)(1,2).
***
***-------------------------------------------------------------------*/
#ifndef ILJPGDECODEINT_H
#define ILJPGDECODEINT_H
#ifndef ILJPGDECODE_H
#include "iljpgdecode.h"
#endif
#ifndef ILJPGINT_H
#include "iljpgint.h"
#endif
/* Codes returned from _iljpgHuffmanDecode() indicating which coefficients
of the 8x8 block are non-zero.
*/
#define HUFF_DC_ONLY 0 /* only DCT non-zero */
#define HUFF_FOURX4 1 /* only top-left 4x4 matrix non-zero */
#define HUFF_FULL 2 /* "whole" 8x8 non-zero */
/* Private data for decoding JPEG (not JIF), e.g.
_iljpgDecodeInit/Execute/Cleanup().
*/
typedef struct {
float *pRevScale; /* built from DCT Q table */
int horiFactor, vertFactor; /* copied from iljpgDataRec */
long width, height; /* size of output buffer */
int mcuXInc, mcuYInc; /* value to inc (x,y) by, each MCU */
long x, y; /* where to store next MCU */
int lastDC; /* DC from previous 8x8 block */
} iljpgCompRec, *iljpgCompPtr;
typedef struct {
iljpgDataPtr pData; /* data passed to _iljpgDecodeInit() */
int mcuRestartCount; /* # of mcu's since last restart */
iljpgPtr pHuffPriv; /* owned by iljpgdehuff.c */
float *DCTRevScaleTables[4]; /* owned by iljpgdedct.c */
iljpgCompRec compData[ILJPG_MAX_COMPS]; /* owned by iljpgdecode.c */
} iljpgDecodePrivRec, *iljpgDecodePrivPtr;
/* Functions in iljpgdehuff.c */
ILJPG_PRIVATE_EXTERN
iljpgError _iljpgDehuffInit (
iljpgDecodePrivPtr pPriv
);
ILJPG_PRIVATE_EXTERN
iljpgError _iljpgDehuffCleanup (
iljpgDecodePrivPtr pPriv
);
ILJPG_PRIVATE_EXTERN
iljpgError _iljpgDehuffReset (
iljpgDecodePrivPtr pPriv
);
ILJPG_PRIVATE_EXTERN
iljpgError _iljpgDehuffExecute (
iljpgDecodePrivPtr pPriv,
ILJPG_DECODE_STREAM stream,
int comp,
int *pOut,
unsigned int *pBlockType
);
/* Functions in iljpgdedct.c */
ILJPG_PRIVATE_EXTERN
iljpgError _iljpgDeDCTInit (
iljpgDecodePrivPtr pPriv
);
ILJPG_PRIVATE_EXTERN
iljpgError _iljpgDeDCTCleanup (
iljpgDecodePrivPtr pPriv
);
ILJPG_PRIVATE_EXTERN
void _iljpgDeDCTFull (
int *pSrc,
long nBytesPerRow,
iljpgPtr ix, /* RETURNED */
float *pRevScale
);
ILJPG_PRIVATE_EXTERN
void _iljpgDeDCT4x4 (
int *pSrc,
long nBytesPerRow,
iljpgPtr ix, /* RETURNED */
float *pRevScale
);
ILJPG_PRIVATE_EXTERN
void _iljpgDeDCTDCOnly (
int *pSrc,
long nBytesPerRow,
iljpgPtr pDst, /* RETURNED */
float *pRevScale
);
#endif