~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/zfdecode.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: zfdecode.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: zfdecode.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* Additional decoding filter creation */
16
16
#include "memory_.h"
17
17
#include "ghost.h"
44
44
 
45
45
/* <target> ASCII85Encode/filter <file> */
46
46
/* <target> <dict> ASCII85Encode/filter <file> */
47
 
private int
 
47
static int
48
48
zA85E(i_ctx_t *i_ctx_p)
49
49
{
50
50
    return filter_write_simple(i_ctx_p, &s_A85E_template);
52
52
 
53
53
/* <source> ASCII85Decode/filter <file> */
54
54
/* <source> <dict> ASCII85Decode/filter <file> */
55
 
private int
 
55
static int
56
56
zA85D(i_ctx_t *i_ctx_p)
57
57
{
58
58
    return filter_read_simple(i_ctx_p, &s_A85D_template);
78
78
 
79
79
/* <source> <dict> CCITTFaxDecode/filter <file> */
80
80
/* <source> CCITTFaxDecode/filter <file> */
81
 
private int
 
81
static int
82
82
zCFD(i_ctx_t *i_ctx_p)
83
83
{
84
84
    os_ptr op = osp;
205
205
 
206
206
/* <source> LZWDecode/filter <file> */
207
207
/* <source> <dict> LZWDecode/filter <file> */
208
 
private int
 
208
static int
209
209
zLZWD(i_ctx_t *i_ctx_p)
210
210
{
211
211
    os_ptr op = osp;
257
257
}
258
258
 
259
259
/* <target> <dict> PixelDifferenceEncode/filter <file> */
260
 
private int
 
260
static int
261
261
zPDiffE(i_ctx_t *i_ctx_p)
262
262
{
263
263
    os_ptr op = osp;
270
270
}
271
271
 
272
272
/* <source> <dict> PixelDifferenceDecode/filter <file> */
273
 
private int
 
273
static int
274
274
zPDiffD(i_ctx_t *i_ctx_p)
275
275
{
276
276
    os_ptr op = osp;
308
308
}
309
309
 
310
310
/* <target> <dict> PNGPredictorEncode/filter <file> */
311
 
private int
 
311
static int
312
312
zPNGPE(i_ctx_t *i_ctx_p)
313
313
{
314
314
    os_ptr op = osp;
321
321
}
322
322
 
323
323
/* <source> <dict> PNGPredictorDecode/filter <file> */
324
 
private int
 
324
static int
325
325
zPNGPD(i_ctx_t *i_ctx_p)
326
326
{
327
327
    os_ptr op = osp;