tif_predict.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (c) 1995-1997 Sam Leffler
  3. * Copyright (c) 1995-1997 Silicon Graphics, Inc.
  4. *
  5. * Permission to use, copy, modify, distribute, and sell this software and
  6. * its documentation for any purpose is hereby granted without fee, provided
  7. * that (i) the above copyright notices and this permission notice appear in
  8. * all copies of the software and related documentation, and (ii) the names of
  9. * Sam Leffler and Silicon Graphics may not be used in any advertising or
  10. * publicity relating to the software without the specific, prior written
  11. * permission of Sam Leffler and Silicon Graphics.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  14. * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  15. * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  16. *
  17. * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  18. * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  19. * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  20. * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
  21. * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  22. * OF THIS SOFTWARE.
  23. */
  24. #ifndef _TIFFPREDICT_
  25. #define _TIFFPREDICT_
  26. #include "tiffio.h"
  27. #include "tiffiop.h"
  28. /*
  29. * ``Library-private'' Support for the Predictor Tag
  30. */
  31. typedef int (*TIFFEncodeDecodeMethod)(TIFF* tif, uint8* buf, tmsize_t size);
  32. /*
  33. * Codecs that want to support the Predictor tag must place
  34. * this structure first in their private state block so that
  35. * the predictor code can cast tif_data to find its state.
  36. */
  37. typedef struct {
  38. int predictor; /* predictor tag value */
  39. tmsize_t stride; /* sample stride over data */
  40. tmsize_t rowsize; /* tile/strip row size */
  41. TIFFCodeMethod encoderow; /* parent codec encode/decode row */
  42. TIFFCodeMethod encodestrip; /* parent codec encode/decode strip */
  43. TIFFCodeMethod encodetile; /* parent codec encode/decode tile */
  44. TIFFEncodeDecodeMethod encodepfunc; /* horizontal differencer */
  45. TIFFCodeMethod decoderow; /* parent codec encode/decode row */
  46. TIFFCodeMethod decodestrip; /* parent codec encode/decode strip */
  47. TIFFCodeMethod decodetile; /* parent codec encode/decode tile */
  48. TIFFEncodeDecodeMethod decodepfunc; /* horizontal accumulator */
  49. TIFFVGetMethod vgetparent; /* super-class method */
  50. TIFFVSetMethod vsetparent; /* super-class method */
  51. TIFFPrintMethod printdir; /* super-class method */
  52. TIFFBoolMethod setupdecode; /* super-class method */
  53. TIFFBoolMethod setupencode; /* super-class method */
  54. } TIFFPredictorState;
  55. #if defined(__cplusplus)
  56. extern "C" {
  57. #endif
  58. extern int TIFFPredictorInit(TIFF*);
  59. extern int TIFFPredictorCleanup(TIFF*);
  60. #if defined(__cplusplus)
  61. }
  62. #endif
  63. #endif /* _TIFFPREDICT_ */
  64. /* vim: set ts=8 sts=8 sw=8 noet: */
  65. /*
  66. * Local Variables:
  67. * mode: c
  68. * c-basic-offset: 8
  69. * fill-column: 78
  70. * End:
  71. */