Possibility to choose to apply MCT (multiple component transform) enabled, and new...
[openjpeg.git] / mj2 / libopenjpeg_097 / jp2.h
1 /*\r
2  * Copyright (c) 2003, Yannick Verschueren\r
3  * Copyright (c) 2003,  Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium\r
4  * All rights reserved.\r
5  *\r
6  * Redistribution and use in source and binary forms, with or without\r
7  * modification, are permitted provided that the following conditions\r
8  * are met:\r
9  * 1. Redistributions of source code must retain the above copyright\r
10  *    notice, this list of conditions and the following disclaimer.\r
11  * 2. Redistributions in binary form must reproduce the above copyright\r
12  *    notice, this list of conditions and the following disclaimer in the\r
13  *    documentation and/or other materials provided with the distribution.\r
14  *\r
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'\r
16  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\r
19  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
20  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
21  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
24  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
25  * POSSIBILITY OF SUCH DAMAGE.\r
26  */\r
27 #ifndef __JP2_H\r
28 #define __JP2_H\r
29 \r
30 #include "j2k.h"\r
31 \r
32 typedef struct {\r
33   int depth;              \r
34   int sgnd;                \r
35   int bpcc;\r
36 } jp2_comps_t;\r
37 \r
38 typedef struct {\r
39   unsigned int w;\r
40   unsigned int h;\r
41   unsigned int numcomps;\r
42   unsigned int bpc;\r
43   unsigned int C;\r
44   unsigned int UnkC;\r
45   unsigned int IPR;\r
46   unsigned int meth;\r
47   unsigned int approx;\r
48   unsigned int enumcs;\r
49   unsigned int precedence;\r
50   unsigned int brand;\r
51   unsigned int minversion;\r
52   unsigned int numcl;\r
53   unsigned int *cl;\r
54   jp2_comps_t *comps;\r
55   j2k_image_t *image;\r
56   unsigned int j2k_codestream_offset;\r
57   unsigned int j2k_codestream_len;\r
58 } jp2_struct_t;\r
59 \r
60 typedef struct {\r
61   int length;\r
62   int type;\r
63   int init_pos;\r
64 } jp2_box_t;\r
65 \r
66 /* int jp2_init_stdjp2(jp2_struct_t * jp2_struct, j2k_image_t * img); \r
67  *\r
68  * Create a standard jp2_structure\r
69  * jp2_struct: the structure you are creating\r
70  * img: a j2k_image_t wich will help you to create the jp2_structure\r
71  */\r
72 int jp2_init_stdjp2(jp2_struct_t * jp2_struct);\r
73 \r
74 /* int jp2_write_jp2c(int j2k_len, int *j2k_codestream_offset, char *j2k_codestream)\r
75  *\r
76  * Write the jp2c codestream box \r
77  * j2k_len: the j2k codestream length\r
78  * j2k_codestream_offset: the function will return the j2k codestream offset\r
79  * j2k_codestream: the j2k codestream to include in jp2 file\r
80  */\r
81 int jp2_write_jp2c(int j2k_len, int *j2k_codestream_offset, char *j2k_codestream);\r
82 \r
83 /* int jp2_write_jp2h(jp2_struct_t * jp2_struct);\r
84  *\r
85  * Write the jp2h header box \r
86  * jp2_struct: the jp2 structure you are working with\r
87  */\r
88 void jp2_write_jp2h(jp2_struct_t * jp2_struct);\r
89 \r
90 /* int jp2_read_jp2h(jp2_struct_t * jp2_struct);\r
91  *\r
92  * Read the jp2h header box \r
93  * jp2_struct: the jp2 structure you are working with\r
94  */\r
95 int jp2_read_jp2h(jp2_struct_t * jp2_struct);\r
96 \r
97 /* int jp2_wrap_j2k(jp2_struct_t * jp2_struct, char *j2k_codestream, \r
98           int j2k_len, char *output)\r
99  *\r
100  * Wrap a J2K codestream in a JP2 file\r
101  * jp2_struct: the jp2 structure used to create jp2 boxes\r
102  * j2k_codestream: the j2k codestream to include in jp2 file\r
103  * output: pointer to jp2 codestream that will be created\r
104  */\r
105 int jp2_wrap_j2k(jp2_struct_t * jp2_struct, char *j2k_codestream, \r
106                   char *output);\r
107 \r
108 \r
109 /* int jp2_read_struct(unsigned char *src, jp2_struct_t * jp2_struct);\r
110  *\r
111  * Decode the structure of a JP2 file\r
112  * src: pointer to memory where compressed data is stored\r
113  * jp2_struct: the jp2 structure that will be created \r
114  * len: length of jp2 codestream\r
115  */\r
116 int jp2_read_struct(unsigned char *src, jp2_struct_t * jp2_struct, int len);\r
117 \r
118 #endif\r