diff options
Diffstat (limited to 'src/libtiff/tif_predict.h')
| -rw-r--r-- | src/libtiff/tif_predict.h | 16 | 
1 files changed, 11 insertions, 5 deletions
| diff --git a/src/libtiff/tif_predict.h b/src/libtiff/tif_predict.h index 594f973..00dacde 100644 --- a/src/libtiff/tif_predict.h +++ b/src/libtiff/tif_predict.h @@ -1,4 +1,4 @@ -/* $Id: tif_predict.h,v 1.1 2008/10/17 06:16:07 scuri Exp $ */ +/* $Id: tif_predict.h,v 1.2 2009/08/21 04:01:59 scuri Exp $ */  /*   * Copyright (c) 1995-1997 Sam Leffler @@ -40,10 +40,16 @@ typedef struct {  	int		stride;		/* sample stride over data */  	tsize_t		rowsize;	/* tile/strip row size */ -	TIFFPostMethod	pfunc;		/* horizontal differencer/accumulator */ -	TIFFCodeMethod	coderow;	/* parent codec encode/decode row */ -	TIFFCodeMethod	codestrip;	/* parent codec encode/decode strip */ -	TIFFCodeMethod	codetile;	/* parent codec encode/decode tile */ + 	TIFFCodeMethod  encoderow;	/* parent codec encode/decode row */ + 	TIFFCodeMethod  encodestrip;	/* parent codec encode/decode strip */ + 	TIFFCodeMethod  encodetile;	/* parent codec encode/decode tile */  + 	TIFFPostMethod  encodepfunc;	/* horizontal differencer */ +  + 	TIFFCodeMethod  decoderow;	/* parent codec encode/decode row */ + 	TIFFCodeMethod  decodestrip;	/* parent codec encode/decode strip */ + 	TIFFCodeMethod  decodetile;	/* parent codec encode/decode tile */  + 	TIFFPostMethod  decodepfunc;	/* horizontal accumulator */ +  	TIFFVGetMethod	vgetparent;	/* super-class method */  	TIFFVSetMethod	vsetparent;	/* super-class method */  	TIFFPrintMethod	printdir;	/* super-class method */ | 
