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
87
88
89
90
91
92
93
|
/* Copyright (C) 1998 Aladdin Enterprises. All rights reserved.
This file is part of AFPL Ghostscript.
AFPL Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author or
distributor accepts any responsibility for the consequences of using it, or
for whether it serves any particular purpose or works at all, unless he or
she says so in writing. Refer to the Aladdin Free Public License (the
"License") for full details.
Every copy of AFPL Ghostscript must include a copy of the License, normally
in a plain ASCII text file named PUBLIC. The License grants you the right
to copy, modify and redistribute AFPL Ghostscript, but only under certain
conditions described in the License. Among other things, the License
requires that the copyright notice and this notice be preserved on all
copies.
*/
/*$Id$ */
/* CCITTFax filter parameter setting and reading */
#include "std.h"
#include "gserror.h"
#include "gserrors.h"
#include "gstypes.h"
#include "gsmemory.h"
#include "gsparam.h"
#include "scommon.h"
#include "scf.h" /* for cfe_max_width */
#include "scfx.h"
/* Define the CCITTFax parameters. */
private const gs_param_item_t s_CF_param_items[] =
{
#define cfp(key, type, memb) { key, type, offset_of(stream_CF_state, memb) }
cfp("Uncompressed", gs_param_type_bool, Uncompressed),
cfp("K", gs_param_type_int, K),
cfp("EndOfLine", gs_param_type_bool, EndOfLine),
cfp("EncodedByteAlign", gs_param_type_bool, EncodedByteAlign),
cfp("Columns", gs_param_type_int, Columns),
cfp("Rows", gs_param_type_int, Rows),
cfp("EndOfBlock", gs_param_type_bool, EndOfBlock),
cfp("BlackIs1", gs_param_type_bool, BlackIs1),
cfp("DamagedRowsBeforeError", gs_param_type_int, DamagedRowsBeforeError),
cfp("FirstBitLowOrder", gs_param_type_bool, FirstBitLowOrder),
cfp("DecodedByteAlign", gs_param_type_int, DecodedByteAlign),
#undef cfp
gs_param_item_end
};
/* Define a limit on the Rows parameter, close to max_int. */
#define cf_max_height 32000
/* Get non-default CCITTFax filter parameters. */
stream_state_proc_get_params(s_CF_get_params, stream_CF_state); /* check */
int
s_CF_get_params(gs_param_list * plist, const stream_CF_state * ss, bool all)
{
stream_CF_state cfs_defaults;
const stream_CF_state *defaults;
if (all)
defaults = 0;
else {
s_CF_set_defaults_inline(&cfs_defaults);
defaults = &cfs_defaults;
}
return gs_param_write_items(plist, ss, defaults, s_CF_param_items);
}
/* Put CCITTFax filter parameters. */
stream_state_proc_put_params(s_CF_put_params, stream_CF_state); /* check */
int
s_CF_put_params(gs_param_list * plist, stream_CF_state * ss)
{
stream_CF_state state;
int code;
state = *ss;
code = gs_param_read_items(plist, (void *)&state, s_CF_param_items);
if (code >= 0 &&
(state.K < -cf_max_height || state.K > cf_max_height ||
state.Columns < 0 || state.Columns > cfe_max_width ||
state.Rows < 0 || state.Rows > cf_max_height ||
state.DamagedRowsBeforeError < 0 ||
state.DamagedRowsBeforeError > cf_max_height ||
state.DecodedByteAlign < 1 || state.DecodedByteAlign > 16 ||
(state.DecodedByteAlign & (state.DecodedByteAlign - 1)) != 0)
)
code = gs_note_error(gs_error_rangecheck);
if (code >= 0)
*ss = state;
return code;
}
|