jp2.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /*
  2. * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
  3. * Copyright (c) 2002-2007, Professor Benoit Macq
  4. * Copyright (c) 2002-2003, Yannick Verschueren
  5. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  6. * All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. * 2. Redistributions in binary form must reproduce the above copyright
  14. * notice, this list of conditions and the following disclaimer in the
  15. * documentation and/or other materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  18. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  19. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  20. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  21. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  22. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  23. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  24. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  25. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  26. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  27. * POSSIBILITY OF SUCH DAMAGE.
  28. */
  29. #ifndef __JP2_H
  30. #define __JP2_H
  31. /**
  32. @file jp2.h
  33. @brief The JPEG-2000 file format Reader/Writer (JP2)
  34. */
  35. /** @defgroup JP2 JP2 - JPEG-2000 file format reader/writer */
  36. /*@{*/
  37. #define JPIP_JPIP 0x6a706970
  38. #define JP2_JP 0x6a502020 /**< JPEG 2000 signature box */
  39. #define JP2_FTYP 0x66747970 /**< File type box */
  40. #define JP2_JP2H 0x6a703268 /**< JP2 header box */
  41. #define JP2_IHDR 0x69686472 /**< Image header box */
  42. #define JP2_COLR 0x636f6c72 /**< Colour specification box */
  43. #define JP2_JP2C 0x6a703263 /**< Contiguous codestream box */
  44. #define JP2_URL 0x75726c20 /**< URL box */
  45. #define JP2_DTBL 0x6474626c /**< Data Reference box */
  46. #define JP2_BPCC 0x62706363 /**< Bits per component box */
  47. #define JP2_JP2 0x6a703220 /**< File type fields */
  48. #define JP2_PCLR 0x70636c72 /**< Palette box */
  49. #define JP2_CMAP 0x636d6170 /**< Component Mapping box */
  50. #define JP2_CDEF 0x63646566 /**< Channel Definition box */
  51. /* ----------------------------------------------------------------------- */
  52. /**
  53. Channel description: channel index, type, assocation
  54. */
  55. typedef struct opj_jp2_cdef_info
  56. {
  57. unsigned short cn, typ, asoc;
  58. } opj_jp2_cdef_info_t;
  59. /**
  60. Channel descriptions and number of descriptions
  61. */
  62. typedef struct opj_jp2_cdef
  63. {
  64. opj_jp2_cdef_info_t *info;
  65. unsigned short n;
  66. } opj_jp2_cdef_t;
  67. /**
  68. Component mappings: channel index, mapping type, palette index
  69. */
  70. typedef struct opj_jp2_cmap_comp
  71. {
  72. unsigned short cmp;
  73. unsigned char mtyp, pcol;
  74. } opj_jp2_cmap_comp_t;
  75. /**
  76. Palette data: table entries, palette columns
  77. */
  78. typedef struct opj_jp2_pclr
  79. {
  80. unsigned int *entries;
  81. unsigned char *channel_sign;
  82. unsigned char *channel_size;
  83. opj_jp2_cmap_comp_t *cmap;
  84. unsigned short nr_entries, nr_channels;
  85. } opj_jp2_pclr_t;
  86. /**
  87. Collector for ICC profile, palette, component mapping, channel description
  88. */
  89. typedef struct opj_jp2_color
  90. {
  91. unsigned char *icc_profile_buf;
  92. int icc_profile_len;
  93. opj_jp2_cdef_t *jp2_cdef;
  94. opj_jp2_pclr_t *jp2_pclr;
  95. unsigned char jp2_has_colr;
  96. } opj_jp2_color_t;
  97. /**
  98. JP2 component
  99. */
  100. typedef struct opj_jp2_comps {
  101. int depth;
  102. int sgnd;
  103. int bpcc;
  104. } opj_jp2_comps_t;
  105. /**
  106. JPEG-2000 file format reader/writer
  107. */
  108. typedef struct opj_jp2 {
  109. /** codec context */
  110. opj_common_ptr cinfo;
  111. /** handle to the J2K codec */
  112. opj_j2k_t *j2k;
  113. unsigned int w;
  114. unsigned int h;
  115. unsigned int numcomps;
  116. unsigned int bpc;
  117. unsigned int C;
  118. unsigned int UnkC;
  119. unsigned int IPR;
  120. unsigned int meth;
  121. unsigned int approx;
  122. unsigned int enumcs;
  123. unsigned int precedence;
  124. unsigned int brand;
  125. unsigned int minversion;
  126. unsigned int numcl;
  127. unsigned int *cl;
  128. opj_jp2_comps_t *comps;
  129. unsigned int j2k_codestream_offset;
  130. unsigned int j2k_codestream_length;
  131. opj_bool jpip_on;
  132. opj_bool ignore_pclr_cmap_cdef;
  133. } opj_jp2_t;
  134. /**
  135. JP2 Box
  136. */
  137. typedef struct opj_jp2_box {
  138. int length;
  139. int type;
  140. int init_pos;
  141. } opj_jp2_box_t;
  142. /** @name Exported functions */
  143. /*@{*/
  144. /* ----------------------------------------------------------------------- */
  145. /**
  146. Write the JP2H box - JP2 Header box (used in MJ2)
  147. @param jp2 JP2 handle
  148. @param cio Output buffer stream
  149. */
  150. void jp2_write_jp2h(opj_jp2_t *jp2, opj_cio_t *cio);
  151. /**
  152. Read the JP2H box - JP2 Header box (used in MJ2)
  153. @param jp2 JP2 handle
  154. @param cio Input buffer stream
  155. @param ext Collector for profile, cdef and pclr data
  156. @return Returns true if successful, returns false otherwise
  157. */
  158. opj_bool jp2_read_jp2h(opj_jp2_t *jp2, opj_cio_t *cio, opj_jp2_color_t *color);
  159. /**
  160. Creates a JP2 decompression structure
  161. @param cinfo Codec context info
  162. @return Returns a handle to a JP2 decompressor if successful, returns NULL otherwise
  163. */
  164. opj_jp2_t* jp2_create_decompress(opj_common_ptr cinfo);
  165. /**
  166. Destroy a JP2 decompressor handle
  167. @param jp2 JP2 decompressor handle to destroy
  168. */
  169. void jp2_destroy_decompress(opj_jp2_t *jp2);
  170. /**
  171. Setup the decoder decoding parameters using user parameters.
  172. Decoding parameters are returned in jp2->j2k->cp.
  173. @param jp2 JP2 decompressor handle
  174. @param parameters decompression parameters
  175. */
  176. void jp2_setup_decoder(opj_jp2_t *jp2, opj_dparameters_t *parameters);
  177. /**
  178. Decode an image from a JPEG-2000 file stream
  179. @param jp2 JP2 decompressor handle
  180. @param cio Input buffer stream
  181. @param cstr_info Codestream information structure if required, NULL otherwise
  182. @return Returns a decoded image if successful, returns NULL otherwise
  183. */
  184. opj_image_t* opj_jp2_decode(opj_jp2_t *jp2, opj_cio_t *cio, opj_codestream_info_t *cstr_info);
  185. /**
  186. Creates a JP2 compression structure
  187. @param cinfo Codec context info
  188. @return Returns a handle to a JP2 compressor if successful, returns NULL otherwise
  189. */
  190. opj_jp2_t* jp2_create_compress(opj_common_ptr cinfo);
  191. /**
  192. Destroy a JP2 compressor handle
  193. @param jp2 JP2 compressor handle to destroy
  194. */
  195. void jp2_destroy_compress(opj_jp2_t *jp2);
  196. /**
  197. Setup the encoder parameters using the current image and using user parameters.
  198. Coding parameters are returned in jp2->j2k->cp.
  199. @param jp2 JP2 compressor handle
  200. @param parameters compression parameters
  201. @param image input filled image
  202. */
  203. void jp2_setup_encoder(opj_jp2_t *jp2, opj_cparameters_t *parameters, opj_image_t *image);
  204. /**
  205. Encode an image into a JPEG-2000 file stream
  206. @param jp2 JP2 compressor handle
  207. @param cio Output buffer stream
  208. @param image Image to encode
  209. @param cstr_info Codestream information structure if required, NULL otherwise
  210. @return Returns true if successful, returns false otherwise
  211. */
  212. opj_bool opj_jp2_encode(opj_jp2_t *jp2, opj_cio_t *cio, opj_image_t *image, opj_codestream_info_t *cstr_info);
  213. /* ----------------------------------------------------------------------- */
  214. /*@}*/
  215. /*@}*/
  216. #endif /* __JP2_H */