You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pipi_internals.h 3.2 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * libpipi Pathetic image processing interface library
  3. * Copyright (c) 2004-2008 Sam Hocevar <sam@zoy.org>
  4. * All Rights Reserved
  5. *
  6. * $Id$
  7. *
  8. * This library is free software. It comes without any warranty, to
  9. * the extent permitted by applicable law. You can redistribute it
  10. * and/or modify it under the terms of the Do What The Fuck You Want
  11. * To Public License, Version 2, as published by Sam Hocevar. See
  12. * http://sam.zoy.org/wtfpl/COPYING for more details.
  13. */
  14. /*
  15. * pipi_internals.h: internal types
  16. */
  17. #ifndef __PIPI_INTERNALS_H__
  18. #define __PIPI_INTERNALS_H__
  19. #include "pipi_stubs.h"
  20. #define SET_FLAG_GRAY 0x00000001
  21. #define SET_FLAG_WRAP 0x00000002
  22. #define SET_FLAG_8BIT 0x00000004
  23. struct pipi_histogram
  24. {
  25. int r_present, g_present, b_present, y_present;
  26. unsigned int a[256];
  27. unsigned int r[256];
  28. unsigned int g[256];
  29. unsigned int b[256];
  30. unsigned int y[256];
  31. };
  32. #ifdef USE_TILES
  33. #define TILE_SIZE 128
  34. struct pipi_tile
  35. {
  36. int x, y;
  37. int zoom;
  38. int refcount;
  39. pipi_format_t fmt;
  40. int plane;
  41. union { uint8_t *u8; float *f; double *d; } data;
  42. union { uint8_t u8[1]; float f[1]; double d[1]; } align;
  43. };
  44. #endif /* USE_TILES */
  45. /* pipi_image_t: the image structure. This is probably going to be the most
  46. * complex structure in the library, but right now it only has fairly normal
  47. * stuff, like width and height and pointers to pixel areas. */
  48. struct pipi_image
  49. {
  50. int w, h, pitch;
  51. #ifdef USE_TILES
  52. pipi_tile_t **tiles;
  53. int ntiles;
  54. #endif /* USE_TILES */
  55. /* A list of internal image flags.
  56. * wrap: should filters wrap around at edges?
  57. * u8: are the image samples still 8-bit per channel? */
  58. int wrap, u8;
  59. /* Translation vectors for wrap around and tiling. */
  60. int wrapx1, wrapy1, wrapx2, wrapy2;
  61. /* List of all possible pixel formats and the last active one. */
  62. pipi_pixels_t p[PIPI_PIXELS_MAX];
  63. pipi_format_t last_modified;
  64. /* Private data used by the codec */
  65. pipi_format_t codec_format;
  66. void *codec_priv;
  67. int (*codec_free)(pipi_image_t *);
  68. };
  69. struct pipi_context
  70. {
  71. int nimages;
  72. pipi_image_t *images[1024]; /* FIXME: do dynamic allocation */
  73. };
  74. #ifdef USE_IMLIB2
  75. pipi_image_t *pipi_load_imlib2(const char *name);
  76. int pipi_save_imlib2(pipi_image_t *img, const char *name);
  77. #endif
  78. #ifdef USE_OPENCV
  79. pipi_image_t *pipi_load_opencv(const char *name);
  80. int pipi_save_opencv(pipi_image_t *img, const char *name);
  81. #endif
  82. #ifdef USE_SDL
  83. pipi_image_t *pipi_load_sdl(const char *name);
  84. int pipi_save_sdl(pipi_image_t *img, const char *name);
  85. #endif
  86. #ifdef USE_GDIPLUS
  87. pipi_image_t *pipi_load_gdiplus(const char *name);
  88. int pipi_save_gdiplus(pipi_image_t *img, const char *name);
  89. #endif
  90. #ifdef USE_GDI
  91. pipi_image_t *pipi_load_gdi(const char *name);
  92. int pipi_save_gdi(pipi_image_t *img, const char *name);
  93. #endif
  94. #ifdef USE_COCOA
  95. pipi_image_t *pipi_load_coreimage(const char *name);
  96. int pipi_save_coreimage(pipi_image_t *img, const char *name);
  97. #endif
  98. #ifdef USE_JPEG
  99. pipi_image_t *pipi_load_jpeg(const char *name);
  100. int pipi_save_jpeg(pipi_image_t *img, const char *name);
  101. #endif
  102. pipi_image_t *pipi_load_oric(const char *name);
  103. int pipi_save_oric(pipi_image_t *img, const char *name);
  104. #endif /* __PIPI_INTERNALS_H__ */