tif_predict.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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_t *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. {
  39. int predictor; /* predictor tag value */
  40. tmsize_t stride; /* sample stride over data */
  41. tmsize_t rowsize; /* tile/strip row size */
  42. TIFFCodeMethod encoderow; /* parent codec encode/decode row */
  43. TIFFCodeMethod encodestrip; /* parent codec encode/decode strip */
  44. TIFFCodeMethod encodetile; /* parent codec encode/decode tile */
  45. TIFFEncodeDecodeMethod encodepfunc; /* horizontal differencer */
  46. TIFFCodeMethod decoderow; /* parent codec encode/decode row */
  47. TIFFCodeMethod decodestrip; /* parent codec encode/decode strip */
  48. TIFFCodeMethod decodetile; /* parent codec encode/decode tile */
  49. TIFFEncodeDecodeMethod decodepfunc; /* horizontal accumulator */
  50. TIFFVGetMethod vgetparent; /* super-class method */
  51. TIFFVSetMethod vsetparent; /* super-class method */
  52. TIFFPrintMethod printdir; /* super-class method */
  53. TIFFBoolMethod setupdecode; /* super-class method */
  54. TIFFBoolMethod setupencode; /* super-class method */
  55. } TIFFPredictorState;
  56. #if defined(__cplusplus)
  57. extern "C"
  58. {
  59. #endif
  60. extern int TIFFPredictorInit(TIFF *);
  61. extern int TIFFPredictorCleanup(TIFF *);
  62. #if defined(__cplusplus)
  63. }
  64. #endif
  65. #endif /* _TIFFPREDICT_ */