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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/* 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: zfilter2.c 9043 2008-08-28 22:48:19Z giles $ */
/* Additional filter creation */
#include "memory_.h"
#include "ghost.h"
#include "oper.h"
#include "gsstruct.h"
#include "ialloc.h"
#include "idict.h"
#include "idparam.h"
#include "store.h"
#include "strimpl.h"
#include "sfilter.h"
#include "scfx.h"
#include "slzwx.h"
#include "spdiffx.h"
#include "spngpx.h"
#include "ifilter.h"
#include "ifilter2.h"
#include "ifwpred.h"
/* ------ CCITTFaxEncode filter ------ */
/* <target> <dict> CCITTFaxEncode/filter <file> */
static int
zCFE(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
stream_CFE_state cfs;
int code;
check_type(*op, t_dictionary);
check_dict_read(*op);
code = zcf_setup(op, (stream_CF_state *)&cfs, iimemory);
if (code < 0)
return code;
return filter_write(i_ctx_p, 0, &s_CFE_template, (stream_state *)&cfs, 0);
}
/* ------ Common setup for possibly pixel-oriented encoding filters ------ */
int
filter_write_predictor(i_ctx_t *i_ctx_p, int npop,
const stream_template * template, stream_state * st)
{
os_ptr op = osp;
int predictor, code;
stream_PDiff_state pds;
stream_PNGP_state pps;
if (r_has_type(op, t_dictionary)) {
if ((code = dict_int_param(op, "Predictor", 0, 15, 1, &predictor)) < 0)
return code;
switch (predictor) {
case 0: /* identity */
predictor = 1;
case 1: /* identity */
break;
case 2: /* componentwise horizontal differencing */
code = zpd_setup(op, &pds);
break;
case 10:
case 11:
case 12:
case 13:
case 14:
case 15:
/* PNG prediction */
code = zpp_setup(op, &pps);
break;
default:
return_error(e_rangecheck);
}
if (code < 0)
return code;
} else
predictor = 1;
if (predictor == 1)
return filter_write(i_ctx_p, npop, template, st, 0);
{
/* We need to cascade filters. */
ref rtarget, rdict;
int code;
/* Save the operands, just in case. */
ref_assign(&rtarget, op - 1);
ref_assign(&rdict, op);
code = filter_write(i_ctx_p, npop, template, st, 0);
if (code < 0)
return code;
/* filter_write changed osp.... */
op = osp;
code =
(predictor == 2 ?
filter_write(i_ctx_p, 0, &s_PDiffE_template, (stream_state *)&pds, 0) :
filter_write(i_ctx_p, 0, &s_PNGPE_template, (stream_state *)&pps, 0));
if (code < 0) {
/* Restore the operands. Don't bother trying to clean up */
/* the first stream. */
osp = ++op;
ref_assign(op - 1, &rtarget);
ref_assign(op, &rdict);
return code;
}
/*
* Mark the compression stream as temporary, and propagate
* CloseTarget from it to the predictor stream.
*/
filter_mark_strm_temp(op, 2);
return code;
}
}
/* ------ LZW encoding filter ------ */
/* <target> LZWEncode/filter <file> */
/* <target> <dict> LZWEncode/filter <file> */
static int
zLZWE(i_ctx_t *i_ctx_p)
{
os_ptr op = osp;
stream_LZW_state lzs;
int code = zlz_setup(op, &lzs);
if (code < 0)
return code;
return filter_write_predictor(i_ctx_p, 0, &s_LZWE_template,
(stream_state *) & lzs);
}
/* ================ Initialization procedure ================ */
const op_def zfilter2_op_defs[] =
{
op_def_begin_filter(),
{"2CCITTFaxEncode", zCFE},
{"1LZWEncode", zLZWE},
op_def_end(0)
};
|