25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

139 satır
3.3 KiB

  1. /*
  2. * libpipi Pathetic image processing interface library
  3. * Copyright (c) 2004-2009 Sam Hocevar <sam@hocevar.net>
  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_sequence
  70. {
  71. int w, h, fps;
  72. uint8_t *convert_buf;
  73. void *codec_priv;
  74. };
  75. struct pipi_context
  76. {
  77. int nimages;
  78. pipi_image_t *images[1024]; /* FIXME: do dynamic allocation */
  79. };
  80. #ifdef USE_IMLIB2
  81. pipi_image_t *pipi_load_imlib2(const char *name);
  82. int pipi_save_imlib2(pipi_image_t *img, const char *name);
  83. #endif
  84. #ifdef USE_OPENCV
  85. pipi_image_t *pipi_load_opencv(const char *name);
  86. int pipi_save_opencv(pipi_image_t *img, const char *name);
  87. #endif
  88. #ifdef USE_SDL
  89. pipi_image_t *pipi_load_sdl(const char *name);
  90. int pipi_save_sdl(pipi_image_t *img, const char *name);
  91. #endif
  92. #ifdef USE_GDIPLUS
  93. pipi_image_t *pipi_load_gdiplus(const char *name);
  94. int pipi_save_gdiplus(pipi_image_t *img, const char *name);
  95. #endif
  96. #ifdef USE_GDI
  97. pipi_image_t *pipi_load_gdi(const char *name);
  98. int pipi_save_gdi(pipi_image_t *img, const char *name);
  99. #endif
  100. #ifdef USE_COCOA
  101. pipi_image_t *pipi_load_coreimage(const char *name);
  102. int pipi_save_coreimage(pipi_image_t *img, const char *name);
  103. #endif
  104. #ifdef USE_JPEG
  105. pipi_image_t *pipi_load_jpeg(const char *name);
  106. int pipi_save_jpeg(pipi_image_t *img, const char *name);
  107. #endif
  108. pipi_image_t *pipi_load_oric(const char *name);
  109. int pipi_save_oric(pipi_image_t *img, const char *name);
  110. #endif /* __PIPI_INTERNALS_H__ */