tcd.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. /*
  2. * The copyright in this software is being made available under the 2-clauses
  3. * BSD License, included below. This software may be subject to other third
  4. * party and contributor rights, including patent rights, and no such rights
  5. * are granted under this license.
  6. *
  7. * Copyright (c) 2002-2014, Universite catholique de Louvain (UCL), Belgium
  8. * Copyright (c) 2002-2014, Professor Benoit Macq
  9. * Copyright (c) 2001-2003, David Janssens
  10. * Copyright (c) 2002-2003, Yannick Verschueren
  11. * Copyright (c) 2003-2007, Francois-Olivier Devaux
  12. * Copyright (c) 2003-2014, Antonin Descampe
  13. * Copyright (c) 2005, Herve Drolon, FreeImage Team
  14. * Copyright (c) 2008, 2011-2012, Centre National d'Etudes Spatiales (CNES), FR
  15. * Copyright (c) 2012, CS Systemes d'Information, France
  16. * Copyright (c) 2017, IntoPIX SA <support@intopix.com>
  17. * All rights reserved.
  18. *
  19. * Redistribution and use in source and binary forms, with or without
  20. * modification, are permitted provided that the following conditions
  21. * are met:
  22. * 1. Redistributions of source code must retain the above copyright
  23. * notice, this list of conditions and the following disclaimer.
  24. * 2. Redistributions in binary form must reproduce the above copyright
  25. * notice, this list of conditions and the following disclaimer in the
  26. * documentation and/or other materials provided with the distribution.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
  29. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  30. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  31. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  32. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  33. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  34. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  35. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  36. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  37. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  38. * POSSIBILITY OF SUCH DAMAGE.
  39. */
  40. #ifndef OPJ_TCD_H
  41. #define OPJ_TCD_H
  42. /**
  43. @file tcd.h
  44. @brief Implementation of a tile coder/decoder (TCD)
  45. The functions in TCD.C encode or decode each tile independently from
  46. each other. The functions in TCD.C are used by other functions in J2K.C.
  47. */
  48. /** @defgroup TCD TCD - Implementation of a tile coder/decoder */
  49. /*@{*/
  50. /**
  51. FIXME DOC
  52. */
  53. typedef struct opj_tcd_pass {
  54. OPJ_UINT32 rate;
  55. OPJ_FLOAT64 distortiondec;
  56. OPJ_UINT32 len;
  57. OPJ_BITFIELD term : 1;
  58. } opj_tcd_pass_t;
  59. /**
  60. FIXME DOC
  61. */
  62. typedef struct opj_tcd_layer {
  63. OPJ_UINT32 numpasses; /* Number of passes in the layer */
  64. OPJ_UINT32 len; /* len of information */
  65. OPJ_FLOAT64 disto; /* add for index (Cfr. Marcela) */
  66. OPJ_BYTE *data; /* data */
  67. } opj_tcd_layer_t;
  68. /**
  69. FIXME DOC
  70. */
  71. typedef struct opj_tcd_cblk_enc {
  72. OPJ_BYTE* data; /* Data */
  73. opj_tcd_layer_t* layers; /* layer information */
  74. opj_tcd_pass_t* passes; /* information about the passes */
  75. OPJ_INT32 x0, y0, x1,
  76. y1; /* dimension of the code-blocks : left upper corner (x0, y0) right low corner (x1,y1) */
  77. OPJ_UINT32 numbps;
  78. OPJ_UINT32 numlenbits;
  79. OPJ_UINT32 data_size; /* Size of allocated data buffer */
  80. OPJ_UINT32
  81. numpasses; /* number of pass already done for the code-blocks */
  82. OPJ_UINT32 numpassesinlayers; /* number of passes in the layer */
  83. OPJ_UINT32 totalpasses; /* total number of passes */
  84. } opj_tcd_cblk_enc_t;
  85. /** Chunk of codestream data that is part of a code block */
  86. typedef struct opj_tcd_seg_data_chunk {
  87. /* Point to tilepart buffer. We don't make a copy !
  88. So the tilepart buffer must be kept alive
  89. as long as we need to decode the codeblocks */
  90. OPJ_BYTE * data;
  91. OPJ_UINT32 len; /* Usable length of data */
  92. } opj_tcd_seg_data_chunk_t;
  93. /** Segment of a code-block.
  94. * A segment represent a number of consecutive coding passes, without termination
  95. * of MQC or RAW between them. */
  96. typedef struct opj_tcd_seg {
  97. OPJ_UINT32 len; /* Size of data related to this segment */
  98. /* Number of passes decoded. Including those that we skip */
  99. OPJ_UINT32 numpasses;
  100. /* Number of passes actually to be decoded. To be used for code-block decoding */
  101. OPJ_UINT32 real_num_passes;
  102. /* Maximum number of passes for this segment */
  103. OPJ_UINT32 maxpasses;
  104. /* Number of new passes for current packed. Transitory value */
  105. OPJ_UINT32 numnewpasses;
  106. /* Codestream length for this segment for current packed. Transitory value */
  107. OPJ_UINT32 newlen;
  108. } opj_tcd_seg_t;
  109. /** Code-block for decoding */
  110. typedef struct opj_tcd_cblk_dec {
  111. opj_tcd_seg_t* segs; /* segments information */
  112. opj_tcd_seg_data_chunk_t* chunks; /* Array of chunks */
  113. /* position of the code-blocks : left upper corner (x0, y0) right low corner (x1,y1) */
  114. OPJ_INT32 x0, y0, x1, y1;
  115. OPJ_UINT32 numbps;
  116. /* number of bits for len, for the current packet. Transitory value */
  117. OPJ_UINT32 numlenbits;
  118. /* number of pass added to the code-blocks, for the current packet. Transitory value */
  119. OPJ_UINT32 numnewpasses;
  120. /* number of segments, including those of packet we skip */
  121. OPJ_UINT32 numsegs;
  122. /* number of segments, to be used for code block decoding */
  123. OPJ_UINT32 real_num_segs;
  124. OPJ_UINT32 m_current_max_segs; /* allocated number of segs[] items */
  125. OPJ_UINT32 numchunks; /* Number of valid chunks items */
  126. OPJ_UINT32 numchunksalloc; /* Number of chunks item allocated */
  127. /* Decoded code-block. Only used for subtile decoding. Otherwise tilec->data is directly updated */
  128. OPJ_INT32* decoded_data;
  129. } opj_tcd_cblk_dec_t;
  130. /** Precinct structure */
  131. typedef struct opj_tcd_precinct {
  132. /* dimension of the precinct : left upper corner (x0, y0) right low corner (x1,y1) */
  133. OPJ_INT32 x0, y0, x1, y1;
  134. OPJ_UINT32 cw, ch; /* number of code-blocks, in width and height */
  135. union { /* code-blocks information */
  136. opj_tcd_cblk_enc_t* enc;
  137. opj_tcd_cblk_dec_t* dec;
  138. void* blocks;
  139. } cblks;
  140. OPJ_UINT32 block_size; /* size taken by cblks (in bytes) */
  141. opj_tgt_tree_t *incltree; /* inclusion tree */
  142. opj_tgt_tree_t *imsbtree; /* IMSB tree */
  143. } opj_tcd_precinct_t;
  144. /** Sub-band structure */
  145. typedef struct opj_tcd_band {
  146. /* dimension of the subband : left upper corner (x0, y0) right low corner (x1,y1) */
  147. OPJ_INT32 x0, y0, x1, y1;
  148. /* band number: for lowest resolution level (0=LL), otherwise (1=HL, 2=LH, 3=HH) */
  149. OPJ_UINT32 bandno;
  150. /* precinct information */
  151. opj_tcd_precinct_t *precincts;
  152. /* size of data taken by precincts */
  153. OPJ_UINT32 precincts_data_size;
  154. OPJ_INT32 numbps;
  155. OPJ_FLOAT32 stepsize;
  156. } opj_tcd_band_t;
  157. /** Tile-component resolution structure */
  158. typedef struct opj_tcd_resolution {
  159. /* dimension of the resolution level : left upper corner (x0, y0) right low corner (x1,y1) */
  160. OPJ_INT32 x0, y0, x1, y1;
  161. /* number of precincts, in width and height, for this resolution level */
  162. OPJ_UINT32 pw, ph;
  163. /* number of sub-bands for the resolution level (1 for lowest resolution level, 3 otherwise) */
  164. OPJ_UINT32 numbands;
  165. /* subband information */
  166. opj_tcd_band_t bands[3];
  167. /* dimension of the resolution limited to window of interest. Only valid if tcd->whole_tile_decoding is set */
  168. OPJ_UINT32 win_x0;
  169. OPJ_UINT32 win_y0;
  170. OPJ_UINT32 win_x1;
  171. OPJ_UINT32 win_y1;
  172. } opj_tcd_resolution_t;
  173. /** Tile-component structure */
  174. typedef struct opj_tcd_tilecomp {
  175. /* dimension of component : left upper corner (x0, y0) right low corner (x1,y1) */
  176. OPJ_INT32 x0, y0, x1, y1;
  177. /* component number */
  178. OPJ_UINT32 compno;
  179. /* number of resolutions level */
  180. OPJ_UINT32 numresolutions;
  181. /* number of resolutions level to decode (at max)*/
  182. OPJ_UINT32 minimum_num_resolutions;
  183. /* resolutions information */
  184. opj_tcd_resolution_t *resolutions;
  185. /* size of data for resolutions (in bytes) */
  186. OPJ_UINT32 resolutions_size;
  187. /* data of the component. For decoding, only valid if tcd->whole_tile_decoding is set (so exclusive of data_win member) */
  188. OPJ_INT32 *data;
  189. /* if true, then need to free after usage, otherwise do not free */
  190. OPJ_BOOL ownsData;
  191. /* we may either need to allocate this amount of data, or re-use image data and ignore this value */
  192. size_t data_size_needed;
  193. /* size of the data of the component */
  194. size_t data_size;
  195. /** data of the component limited to window of interest. Only valid for decoding and if tcd->whole_tile_decoding is NOT set (so exclusive of data member) */
  196. OPJ_INT32 *data_win;
  197. /* dimension of the component limited to window of interest. Only valid for decoding and if tcd->whole_tile_decoding is NOT set */
  198. OPJ_UINT32 win_x0;
  199. OPJ_UINT32 win_y0;
  200. OPJ_UINT32 win_x1;
  201. OPJ_UINT32 win_y1;
  202. /* add fixed_quality */
  203. OPJ_INT32 numpix;
  204. } opj_tcd_tilecomp_t;
  205. /**
  206. FIXME DOC
  207. */
  208. typedef struct opj_tcd_tile {
  209. /* dimension of the tile : left upper corner (x0, y0) right low corner (x1,y1) */
  210. OPJ_INT32 x0, y0, x1, y1;
  211. OPJ_UINT32 numcomps; /* number of components in tile */
  212. opj_tcd_tilecomp_t *comps; /* Components information */
  213. OPJ_INT32 numpix; /* add fixed_quality */
  214. OPJ_FLOAT64 distotile; /* add fixed_quality */
  215. OPJ_FLOAT64 distolayer[100]; /* add fixed_quality */
  216. OPJ_UINT32 packno; /* packet number */
  217. } opj_tcd_tile_t;
  218. /**
  219. FIXME DOC
  220. */
  221. typedef struct opj_tcd_image {
  222. opj_tcd_tile_t *tiles; /* Tiles information */
  223. }
  224. opj_tcd_image_t;
  225. /**
  226. Tile coder/decoder
  227. */
  228. typedef struct opj_tcd {
  229. /** Position of the tilepart flag in Progression order*/
  230. OPJ_INT32 tp_pos;
  231. /** Tile part number*/
  232. OPJ_UINT32 tp_num;
  233. /** Current tile part number*/
  234. OPJ_UINT32 cur_tp_num;
  235. /** Total number of tileparts of the current tile*/
  236. OPJ_UINT32 cur_totnum_tp;
  237. /** Current Packet iterator number */
  238. OPJ_UINT32 cur_pino;
  239. /** info on each image tile */
  240. opj_tcd_image_t *tcd_image;
  241. /** image header */
  242. opj_image_t *image;
  243. /** coding parameters */
  244. opj_cp_t *cp;
  245. /** coding/decoding parameters common to all tiles */
  246. opj_tcp_t *tcp;
  247. /** current encoded/decoded tile */
  248. OPJ_UINT32 tcd_tileno;
  249. /** tell if the tcd is a decoder. */
  250. OPJ_BITFIELD m_is_decoder : 1;
  251. /** Thread pool */
  252. opj_thread_pool_t* thread_pool;
  253. /** Coordinates of the window of interest, in grid reference space */
  254. OPJ_UINT32 win_x0;
  255. OPJ_UINT32 win_y0;
  256. OPJ_UINT32 win_x1;
  257. OPJ_UINT32 win_y1;
  258. /** Only valid for decoding. Whether the whole tile is decoded, or just the region in win_x0/win_y0/win_x1/win_y1 */
  259. OPJ_BOOL whole_tile_decoding;
  260. /* Array of size image->numcomps indicating if a component must be decoded. NULL if all components must be decoded */
  261. OPJ_BOOL* used_component;
  262. } opj_tcd_t;
  263. /**
  264. * Structure to hold information needed to generate some markers.
  265. * Used by encoder.
  266. */
  267. typedef struct opj_tcd_marker_info {
  268. /** In: Whether information to generate PLT markers in needed */
  269. OPJ_BOOL need_PLT;
  270. /** OUT: Number of elements in p_packet_size[] array */
  271. OPJ_UINT32 packet_count;
  272. /** OUT: Array of size packet_count, such that p_packet_size[i] is
  273. * the size in bytes of the ith packet */
  274. OPJ_UINT32* p_packet_size;
  275. } opj_tcd_marker_info_t;
  276. /** @name Exported functions */
  277. /*@{*/
  278. /* ----------------------------------------------------------------------- */
  279. /**
  280. Dump the content of a tcd structure
  281. */
  282. /*void tcd_dump(FILE *fd, opj_tcd_t *tcd, opj_tcd_image_t *img);*/ /* TODO MSD shoul use the new v2 structures */
  283. /**
  284. Create a new TCD handle
  285. @param p_is_decoder FIXME DOC
  286. @return Returns a new TCD handle if successful returns NULL otherwise
  287. */
  288. opj_tcd_t* opj_tcd_create(OPJ_BOOL p_is_decoder);
  289. /**
  290. Destroy a previously created TCD handle
  291. @param tcd TCD handle to destroy
  292. */
  293. void opj_tcd_destroy(opj_tcd_t *tcd);
  294. /**
  295. * Create a new opj_tcd_marker_info_t* structure
  296. * @param need_PLT Whether information is needed to generate PLT markers.
  297. */
  298. opj_tcd_marker_info_t* opj_tcd_marker_info_create(OPJ_BOOL need_PLT);
  299. /**
  300. Destroy a previously created opj_tcd_marker_info_t* structure
  301. @param p_tcd_marker_info Structure to destroy
  302. */
  303. void opj_tcd_marker_info_destroy(opj_tcd_marker_info_t *p_tcd_marker_info);
  304. /**
  305. * Initialize the tile coder and may reuse some memory.
  306. * @param p_tcd TCD handle.
  307. * @param p_image raw image.
  308. * @param p_cp coding parameters.
  309. * @param p_tp thread pool
  310. *
  311. * @return true if the encoding values could be set (false otherwise).
  312. */
  313. OPJ_BOOL opj_tcd_init(opj_tcd_t *p_tcd,
  314. opj_image_t * p_image,
  315. opj_cp_t * p_cp,
  316. opj_thread_pool_t* p_tp);
  317. /**
  318. * Allocates memory for decoding a specific tile.
  319. *
  320. * @param p_tcd the tile decoder.
  321. * @param p_tile_no the index of the tile received in sequence. This not necessarily lead to the
  322. * tile at index p_tile_no.
  323. * @param p_manager the event manager.
  324. *
  325. * @return true if the remaining data is sufficient.
  326. */
  327. OPJ_BOOL opj_tcd_init_decode_tile(opj_tcd_t *p_tcd, OPJ_UINT32 p_tile_no,
  328. opj_event_mgr_t* p_manager);
  329. void opj_tcd_makelayer_fixed(opj_tcd_t *tcd, OPJ_UINT32 layno,
  330. OPJ_UINT32 final);
  331. void opj_tcd_rateallocate_fixed(opj_tcd_t *tcd);
  332. void opj_tcd_makelayer(opj_tcd_t *tcd,
  333. OPJ_UINT32 layno,
  334. OPJ_FLOAT64 thresh,
  335. OPJ_UINT32 final);
  336. OPJ_BOOL opj_tcd_rateallocate(opj_tcd_t *tcd,
  337. OPJ_BYTE *dest,
  338. OPJ_UINT32 * p_data_written,
  339. OPJ_UINT32 len,
  340. opj_codestream_info_t *cstr_info,
  341. opj_event_mgr_t *p_manager);
  342. /**
  343. * Gets the maximum tile size that will be taken by the tile once decoded.
  344. */
  345. OPJ_UINT32 opj_tcd_get_decoded_tile_size(opj_tcd_t *p_tcd,
  346. OPJ_BOOL take_into_account_partial_decoding);
  347. /**
  348. * Encodes a tile from the raw image into the given buffer.
  349. * @param p_tcd Tile Coder handle
  350. * @param p_tile_no Index of the tile to encode.
  351. * @param p_dest Destination buffer
  352. * @param p_data_written pointer to an int that is incremented by the number of bytes really written on p_dest
  353. * @param p_len Maximum length of the destination buffer
  354. * @param p_cstr_info Codestream information structure
  355. * @param p_marker_info Marker information structure
  356. * @param p_manager the user event manager
  357. * @return true if the coding is successful.
  358. */
  359. OPJ_BOOL opj_tcd_encode_tile(opj_tcd_t *p_tcd,
  360. OPJ_UINT32 p_tile_no,
  361. OPJ_BYTE *p_dest,
  362. OPJ_UINT32 * p_data_written,
  363. OPJ_UINT32 p_len,
  364. struct opj_codestream_info *p_cstr_info,
  365. opj_tcd_marker_info_t* p_marker_info,
  366. opj_event_mgr_t *p_manager);
  367. /**
  368. Decode a tile from a buffer into a raw image
  369. @param tcd TCD handle
  370. @param win_x0 Upper left x of region to decode (in grid coordinates)
  371. @param win_y0 Upper left y of region to decode (in grid coordinates)
  372. @param win_x1 Lower right x of region to decode (in grid coordinates)
  373. @param win_y1 Lower right y of region to decode (in grid coordinates)
  374. @param numcomps_to_decode Size of the comps_indices array, or 0 if decoding all components.
  375. @param comps_indices Array of numcomps values representing the indices
  376. of the components to decode (relative to the
  377. codestream, starting at 0). Or NULL if decoding all components.
  378. @param src Source buffer
  379. @param len Length of source buffer
  380. @param tileno Number that identifies one of the tiles to be decoded
  381. @param cstr_info FIXME DOC
  382. @param manager the event manager.
  383. */
  384. OPJ_BOOL opj_tcd_decode_tile(opj_tcd_t *tcd,
  385. OPJ_UINT32 win_x0,
  386. OPJ_UINT32 win_y0,
  387. OPJ_UINT32 win_x1,
  388. OPJ_UINT32 win_y1,
  389. OPJ_UINT32 numcomps_to_decode,
  390. const OPJ_UINT32 *comps_indices,
  391. OPJ_BYTE *src,
  392. OPJ_UINT32 len,
  393. OPJ_UINT32 tileno,
  394. opj_codestream_index_t *cstr_info,
  395. opj_event_mgr_t *manager);
  396. /**
  397. * Copies tile data from the system onto the given memory block.
  398. */
  399. OPJ_BOOL opj_tcd_update_tile_data(opj_tcd_t *p_tcd,
  400. OPJ_BYTE * p_dest,
  401. OPJ_UINT32 p_dest_length);
  402. /**
  403. * Get the size in bytes of the input buffer provided before encoded.
  404. * This must be the size provided to the p_src_length argument of
  405. * opj_tcd_copy_tile_data()
  406. */
  407. OPJ_SIZE_T opj_tcd_get_encoder_input_buffer_size(opj_tcd_t *p_tcd);
  408. /**
  409. * Initialize the tile coder and may reuse some meory.
  410. *
  411. * @param p_tcd TCD handle.
  412. * @param p_tile_no current tile index to encode.
  413. * @param p_manager the event manager.
  414. *
  415. * @return true if the encoding values could be set (false otherwise).
  416. */
  417. OPJ_BOOL opj_tcd_init_encode_tile(opj_tcd_t *p_tcd,
  418. OPJ_UINT32 p_tile_no, opj_event_mgr_t* p_manager);
  419. /**
  420. * Copies tile data from the given memory block onto the system.
  421. *
  422. * p_src_length must be equal to opj_tcd_get_encoder_input_buffer_size()
  423. */
  424. OPJ_BOOL opj_tcd_copy_tile_data(opj_tcd_t *p_tcd,
  425. OPJ_BYTE * p_src,
  426. OPJ_SIZE_T p_src_length);
  427. /**
  428. * Allocates tile component data
  429. *
  430. *
  431. */
  432. OPJ_BOOL opj_alloc_tile_component_data(opj_tcd_tilecomp_t *l_tilec);
  433. /** Returns whether a sub-band is empty (i.e. whether it has a null area)
  434. * @param band Sub-band handle.
  435. * @return OPJ_TRUE whether the sub-band is empty.
  436. */
  437. OPJ_BOOL opj_tcd_is_band_empty(opj_tcd_band_t* band);
  438. /** Reinitialize a segment */
  439. void opj_tcd_reinit_segment(opj_tcd_seg_t* seg);
  440. /** Returns whether a sub-band region contributes to the area of interest
  441. * tcd->win_x0,tcd->win_y0,tcd->win_x1,tcd->win_y1.
  442. *
  443. * @param tcd TCD handle.
  444. * @param compno Component number
  445. * @param resno Resolution number
  446. * @param bandno Band number (*not* band index, ie 0, 1, 2 or 3)
  447. * @param x0 Upper left x in subband coordinates
  448. * @param y0 Upper left y in subband coordinates
  449. * @param x1 Lower right x in subband coordinates
  450. * @param y1 Lower right y in subband coordinates
  451. * @return OPJ_TRUE whether the sub-band region contributs to the area of
  452. * interest.
  453. */
  454. OPJ_BOOL opj_tcd_is_subband_area_of_interest(opj_tcd_t *tcd,
  455. OPJ_UINT32 compno,
  456. OPJ_UINT32 resno,
  457. OPJ_UINT32 bandno,
  458. OPJ_UINT32 x0,
  459. OPJ_UINT32 y0,
  460. OPJ_UINT32 x1,
  461. OPJ_UINT32 y1);
  462. /* ----------------------------------------------------------------------- */
  463. /*@}*/
  464. /*@}*/
  465. #endif /* OPJ_TCD_H */