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