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
|
/* Copyright (C) 2001-2006 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied, modified
or distributed except as expressly authorized under the terms of that
license. Refer to licensing information at http://www.artifex.com/
or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
/* $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. */
static 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, was too low at 32000 */
#define cf_max_height 1000000
/* 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;
}
|