File: sdct.h

package info (click to toggle)
gs 3.33-7
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 7,436 kB
  • ctags: 15,511
  • sloc: ansic: 92,150; asm: 684; sh: 486; makefile: 91
file content (86 lines) | stat: -rw-r--r-- 3,283 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* Copyright (C) 1994 Aladdin Enterprises.  All rights reserved.
  
  This file is part of GNU Ghostscript.
  
  GNU Ghostscript is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility to
  anyone for the consequences of using it or for whether it serves any
  particular purpose or works at all, unless he says so in writing.  Refer
  to the GNU Ghostscript General Public License for full details.
  
*/

/* sdct.h */
/* Definitions for DCT filters for Ghostscript streams */
/* Requires stream.h, strimpl.h, jpeg/jpeglib.h */
#include <setjmp.h>			/* for jmp_buf */

/* ------ DCT filters ------ */

/*
 * Define the stream state.
 * The jpeg_xxx_data structs are allocated in immovable memory
 * to simplify use of the IJG library.
 */
#define jpeg_stream_data_common\
		/* We put a copy of the stream template here, because */\
		/* the minimum buffer sizes depend on the image parameters. */\
	stream_template template;\
	struct jpeg_error_mgr err;\
	jmp_buf exit_jmpbuf;\
		/* The following are documented in Adobe TN 5116. */\
	int Picky;		/* 0 or 1 */\
	int Relax		/* 0 or 1 */
typedef struct jpeg_stream_data_s {
	jpeg_stream_data_common;
} jpeg_stream_data;
typedef struct jpeg_compress_data_s {
	jpeg_stream_data_common;
	/* cinfo must immediately follow the common fields */
	struct jpeg_compress_struct cinfo;
	struct jpeg_destination_mgr destination;
} jpeg_compress_data;
typedef struct jpeg_decompress_data_s {
	jpeg_stream_data_common;
	/* dinfo must immediately follow the common fields, */
	/* so that it has same offset as cinfo. */
	struct jpeg_decompress_struct dinfo;
	struct jpeg_source_mgr source;
	long skip;		/* # of bytes remaining to skip in input */
	bool input_eod;		/* true when no more input data available */
	bool faked_eoi;		/* true when fill_input_buffer inserted EOI */
	byte * scanline_buffer;	/* buffer for oversize scanline, or NULL */
	uint bytes_in_scanline;	/* # of bytes remaining to output from same */
} jpeg_decompress_data;

/* The stream state itself.  This is kept in garbage-collectable memory. */
typedef struct stream_DCT_state_s {
	stream_state_common;
		/* The following are set before initialization. */
		/* Note that most JPEG parameters go straight into */
		/* the IJG data structures, not into this struct. */
	gs_const_string Markers;	/* NULL if no Markers parameter */
	float QFactor;
	int ColorTransform;		/* -1 if not specified */
	bool NoMarker;			/* DCTEncode only */
		/* This is a pointer to immovable storage. */
	union _jd {
		jpeg_stream_data *common;
		jpeg_compress_data *compress;
		jpeg_decompress_data *decompress;
	} data;
		/* DCTEncode sets this before initialization;
		 * DCTDecode cannot set it until the JPEG headers are read.
		 */
	uint scan_line_size;
		/* The following are updated dynamically. */
	int phase;
} stream_DCT_state;
/* The state descriptor is public only to allow us to split up */
/* the encoding and decoding filters. */
extern_st(st_DCT_state);
#define public_st_DCT_state()	/* in sdctc.c */\
  gs_public_st_composite(st_DCT_state, stream_DCT_state,\
    "DCTEncode/Decode state", dct_enum_ptrs, dct_reloc_ptrs)
extern const stream_template s_DCTD_template;
extern const stream_template s_DCTE_template;