]> Creatis software - gdcm.git/blob - src/gdcmopenjpeg/libopenjpeg/tgt.h
ENH: Huge update to openjpeg 1.0 (actually more CVS)...
[gdcm.git] / src / gdcmopenjpeg / libopenjpeg / tgt.h
1 /*\r
2  * Copyright (c) 2001-2003, David Janssens\r
3  * Copyright (c) 2002-2003, Yannick Verschueren\r
4  * Copyright (c) 2003-2005, Francois Devaux and Antonin Descampe\r
5  * Copyright (c) 2005, HervĂ© Drolon, FreeImage Team\r
6  * Copyright (c) 2002-2005, Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium\r
7  * All rights reserved.\r
8  *\r
9  * Redistribution and use in source and binary forms, with or without\r
10  * modification, are permitted provided that the following conditions\r
11  * are met:\r
12  * 1. Redistributions of source code must retain the above copyright\r
13  *    notice, this list of conditions and the following disclaimer.\r
14  * 2. Redistributions in binary form must reproduce the above copyright\r
15  *    notice, this list of conditions and the following disclaimer in the\r
16  *    documentation and/or other materials provided with the distribution.\r
17  *\r
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'\r
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\r
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
28  * POSSIBILITY OF SUCH DAMAGE.\r
29  */\r
30 \r
31 #ifndef __TGT_H\r
32 #define __TGT_H\r
33 /**\r
34 @file tgt.h\r
35 @brief Implementation of a tag-tree coder (TGT)\r
36 \r
37 The functions in TGT.C have for goal to realize a tag-tree coder. The functions in TGT.C\r
38 are used by some function in T2.C.\r
39 */\r
40 \r
41 /** @defgroup TGT TGT - Implementation of a tag-tree coder */\r
42 /*@{*/\r
43 \r
44 /**\r
45 Tag node\r
46 */\r
47 typedef struct opj_tgt_node {\r
48   struct opj_tgt_node *parent;\r
49   int value;\r
50   int low;\r
51   int known;\r
52 } opj_tgt_node_t;\r
53 \r
54 /**\r
55 Tag tree\r
56 */\r
57 typedef struct opj_tgt_tree {\r
58   int numleafsh;\r
59   int numleafsv;\r
60   int numnodes;\r
61   opj_tgt_node_t *nodes;\r
62 } opj_tgt_tree_t;\r
63 \r
64 /** @name Exported functions */\r
65 /*@{*/\r
66 /* ----------------------------------------------------------------------- */\r
67 /**\r
68 Create a tag-tree\r
69 @param numleafsh Width of the array of leafs of the tree\r
70 @param numleafsv Height of the array of leafs of the tree\r
71 @return Returns a new tag-tree if successful, returns NULL otherwise\r
72 */\r
73 opj_tgt_tree_t *tgt_create(int numleafsh, int numleafsv);\r
74 /**\r
75 Destroy a tag-tree, liberating memory\r
76 @param tree Tag-tree to destroy\r
77 */\r
78 void tgt_destroy(opj_tgt_tree_t *tree);\r
79 /**\r
80 Reset a tag-tree (set all leaves to 0)\r
81 @param tree Tag-tree to reset\r
82 */\r
83 void tgt_reset(opj_tgt_tree_t *tree);\r
84 /**\r
85 Set the value of a leaf of a tag-tree\r
86 @param tree Tag-tree to modify\r
87 @param leafno Number that identifies the leaf to modify\r
88 @param value New value of the leaf\r
89 */\r
90 void tgt_setvalue(opj_tgt_tree_t *tree, int leafno, int value);\r
91 /**\r
92 Encode the value of a leaf of the tag-tree up to a given threshold\r
93 @param bio Pointer to a BIO handle\r
94 @param tree Tag-tree to modify\r
95 @param leafno Number that identifies the leaf to encode\r
96 @param threshold Threshold to use when encoding value of the leaf\r
97 */\r
98 void tgt_encode(opj_bio_t *bio, opj_tgt_tree_t *tree, int leafno, int threshold);\r
99 /**\r
100 Decode the value of a leaf of the tag-tree up to a given threshold\r
101 @param bio Pointer to a BIO handle\r
102 @param tree Tag-tree to decode\r
103 @param leafno Number that identifies the leaf to decode\r
104 @param threshold Threshold to use when decoding value of the leaf\r
105 @return Returns 1 if the node's value < threshold, returns 0 otherwise\r
106 */\r
107 int tgt_decode(opj_bio_t *bio, opj_tgt_tree_t *tree, int leafno, int threshold);\r
108 /* ----------------------------------------------------------------------- */\r
109 /*@}*/\r
110 \r
111 /*@}*/\r
112 \r
113 #endif /* __TGT_H */\r