[trunk] [trunk] remove old opj_tcp and rename opj_tcp_v2 to opj_tcp
[openjpeg.git] / src / lib / openjp2 / t1_generate_luts.c
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) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team
8  * Copyright (c) 2007, Callum Lerwick <seg@haxxed.com>
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include "opj_includes.h"
34
35 static int t1_init_ctxno_zc(int f, int orient) {
36         int h, v, d, n, t, hv;
37         n = 0;
38         h = ((f & T1_SIG_W) != 0) + ((f & T1_SIG_E) != 0);
39         v = ((f & T1_SIG_N) != 0) + ((f & T1_SIG_S) != 0);
40         d = ((f & T1_SIG_NW) != 0) + ((f & T1_SIG_NE) != 0) + ((f & T1_SIG_SE) != 0) + ((f & T1_SIG_SW) != 0);
41
42         switch (orient) {
43                 case 2:
44                         t = h;
45                         h = v;
46                         v = t;
47                 case 0:
48                 case 1:
49                         if (!h) {
50                                 if (!v) {
51                                         if (!d)
52                                                 n = 0;
53                                         else if (d == 1)
54                                                 n = 1;
55                                         else
56                                                 n = 2;
57                                 } else if (v == 1) {
58                                         n = 3;
59                                 } else {
60                                         n = 4;
61                                 }
62                         } else if (h == 1) {
63                                 if (!v) {
64                                         if (!d)
65                                                 n = 5;
66                                         else
67                                                 n = 6;
68                                 } else {
69                                         n = 7;
70                                 }
71                         } else
72                                 n = 8;
73                         break;
74                 case 3:
75                         hv = h + v;
76                         if (!d) {
77                                 if (!hv) {
78                                         n = 0;
79                                 } else if (hv == 1) {
80                                         n = 1;
81                                 } else {
82                                         n = 2;
83                                 }
84                         } else if (d == 1) {
85                                 if (!hv) {
86                                         n = 3;
87                                 } else if (hv == 1) {
88                                         n = 4;
89                                 } else {
90                                         n = 5;
91                                 }
92                         } else if (d == 2) {
93                                 if (!hv) {
94                                         n = 6;
95                                 } else {
96                                         n = 7;
97                                 }
98                         } else {
99                                 n = 8;
100                         }
101                         break;
102         }
103
104         return (T1_CTXNO_ZC + n);
105 }
106
107 static int t1_init_ctxno_sc(int f) {
108         int hc, vc, n;
109         n = 0;
110
111         hc = opj_int_min(((f & (T1_SIG_E | T1_SGN_E)) ==
112                                 T1_SIG_E) + ((f & (T1_SIG_W | T1_SGN_W)) == T1_SIG_W),
113                         1) - opj_int_min(((f & (T1_SIG_E | T1_SGN_E)) ==
114                                         (T1_SIG_E | T1_SGN_E)) +
115                                 ((f & (T1_SIG_W | T1_SGN_W)) ==
116                                  (T1_SIG_W | T1_SGN_W)), 1);
117
118         vc = opj_int_min(((f & (T1_SIG_N | T1_SGN_N)) ==
119                                 T1_SIG_N) + ((f & (T1_SIG_S | T1_SGN_S)) == T1_SIG_S),
120                         1) - opj_int_min(((f & (T1_SIG_N | T1_SGN_N)) ==
121                                         (T1_SIG_N | T1_SGN_N)) +
122                                 ((f & (T1_SIG_S | T1_SGN_S)) ==
123                                  (T1_SIG_S | T1_SGN_S)), 1);
124
125         if (hc < 0) {
126                 hc = -hc;
127                 vc = -vc;
128         }
129         if (!hc) {
130                 if (vc == -1)
131                         n = 1;
132                 else if (!vc)
133                         n = 0;
134                 else
135                         n = 1;
136         } else if (hc == 1) {
137                 if (vc == -1)
138                         n = 2;
139                 else if (!vc)
140                         n = 3;
141                 else
142                         n = 4;
143         }
144
145         return (T1_CTXNO_SC + n);
146 }
147
148 static int t1_init_spb(int f) {
149         int hc, vc, n;
150
151         hc = opj_int_min(((f & (T1_SIG_E | T1_SGN_E)) ==
152                                 T1_SIG_E) + ((f & (T1_SIG_W | T1_SGN_W)) == T1_SIG_W),
153                         1) - opj_int_min(((f & (T1_SIG_E | T1_SGN_E)) ==
154                                         (T1_SIG_E | T1_SGN_E)) +
155                                 ((f & (T1_SIG_W | T1_SGN_W)) ==
156                                  (T1_SIG_W | T1_SGN_W)), 1);
157
158         vc = opj_int_min(((f & (T1_SIG_N | T1_SGN_N)) ==
159                                 T1_SIG_N) + ((f & (T1_SIG_S | T1_SGN_S)) == T1_SIG_S),
160                         1) - opj_int_min(((f & (T1_SIG_N | T1_SGN_N)) ==
161                                         (T1_SIG_N | T1_SGN_N)) +
162                                 ((f & (T1_SIG_S | T1_SGN_S)) ==
163                                  (T1_SIG_S | T1_SGN_S)), 1);
164
165         if (!hc && !vc)
166                 n = 0;
167         else
168                 n = (!(hc > 0 || (!hc && vc > 0)));
169
170         return n;
171 }
172
173 static void dump_array16(int array[],int size){
174         int i;
175         --size;
176         for (i = 0; i < size; ++i) {
177                 printf("0x%04x, ", array[i]);
178                 if(!((i+1)&0x7))
179                         printf("\n  ");
180         }
181         printf("0x%04x\n};\n\n", array[size]);
182 }
183
184 int main(){
185         int i, j;
186         double u, v, t;
187
188         int lut_ctxno_zc[1024];
189         int lut_nmsedec_sig[1 << T1_NMSEDEC_BITS];
190         int lut_nmsedec_sig0[1 << T1_NMSEDEC_BITS];
191         int lut_nmsedec_ref[1 << T1_NMSEDEC_BITS];
192         int lut_nmsedec_ref0[1 << T1_NMSEDEC_BITS];
193
194         printf("/* This file was automatically generated by t1_generate_luts.c */\n\n");
195
196         /* lut_ctxno_zc */
197         for (j = 0; j < 4; ++j) {
198                 for (i = 0; i < 256; ++i) {
199                         int orient = j;
200                         if (orient == 2) {
201                                 orient = 1;
202                         } else if (orient == 1) {
203                                 orient = 2;
204                         }
205                         lut_ctxno_zc[(orient << 8) | i] = t1_init_ctxno_zc(i, j);
206                 }
207         }
208
209         printf("static OPJ_BYTE lut_ctxno_zc[1024] = {\n  ");
210         for (i = 0; i < 1023; ++i) {
211                 printf("%i, ", lut_ctxno_zc[i]);
212                 if(!((i+1)&0x1f))
213                         printf("\n  ");
214         }
215         printf("%i\n};\n\n", lut_ctxno_zc[1023]);
216
217         /* lut_ctxno_sc */
218         printf("static OPJ_BYTE lut_ctxno_sc[256] = {\n  ");
219         for (i = 0; i < 255; ++i) {
220                 printf("0x%x, ", t1_init_ctxno_sc(i << 4));
221                 if(!((i+1)&0xf))
222                         printf("\n  ");
223         }
224         printf("0x%x\n};\n\n", t1_init_ctxno_sc(255 << 4));
225
226         /* lut_spb */
227         printf("static OPJ_BYTE lut_spb[256] = {\n  ");
228         for (i = 0; i < 255; ++i) {
229                 printf("%i, ", t1_init_spb(i << 4));
230                 if(!((i+1)&0x1f))
231                         printf("\n  ");
232         }
233         printf("%i\n};\n\n", t1_init_spb(255 << 4));
234
235         /* FIXME FIXME FIXME */
236         /* fprintf(stdout,"nmsedec luts:\n"); */
237         for (i = 0; i < (1 << T1_NMSEDEC_BITS); ++i) {
238                 t = i / pow(2, T1_NMSEDEC_FRACBITS);
239                 u = t;
240                 v = t - 1.5;
241                 lut_nmsedec_sig[i] = 
242                         opj_int_max(0, 
243                                         (int) (floor((u * u - v * v) * pow(2, T1_NMSEDEC_FRACBITS) + 0.5) / pow(2, T1_NMSEDEC_FRACBITS) * 8192.0));
244                 lut_nmsedec_sig0[i] =
245                         opj_int_max(0,
246                                         (int) (floor((u * u) * pow(2, T1_NMSEDEC_FRACBITS) + 0.5) / pow(2, T1_NMSEDEC_FRACBITS) * 8192.0));
247                 u = t - 1.0;
248                 if (i & (1 << (T1_NMSEDEC_BITS - 1))) {
249                         v = t - 1.5;
250                 } else {
251                         v = t - 0.5;
252                 }
253                 lut_nmsedec_ref[i] =
254                         opj_int_max(0,
255                                         (int) (floor((u * u - v * v) * pow(2, T1_NMSEDEC_FRACBITS) + 0.5) / pow(2, T1_NMSEDEC_FRACBITS) * 8192.0));
256                 lut_nmsedec_ref0[i] =
257                         opj_int_max(0,
258                                         (int) (floor((u * u) * pow(2, T1_NMSEDEC_FRACBITS) + 0.5) / pow(2, T1_NMSEDEC_FRACBITS) * 8192.0));
259         }
260
261         printf("static OPJ_INT16 lut_nmsedec_sig[1 << T1_NMSEDEC_BITS] = {\n  ");
262         dump_array16(lut_nmsedec_sig, 1 << T1_NMSEDEC_BITS);
263
264         printf("static OPJ_INT16 lut_nmsedec_sig0[1 << T1_NMSEDEC_BITS] = {\n  ");
265         dump_array16(lut_nmsedec_sig0, 1 << T1_NMSEDEC_BITS);
266
267         printf("static OPJ_INT16 lut_nmsedec_ref[1 << T1_NMSEDEC_BITS] = {\n  ");
268         dump_array16(lut_nmsedec_ref, 1 << T1_NMSEDEC_BITS);
269
270         printf("static OPJ_INT16 lut_nmsedec_ref0[1 << T1_NMSEDEC_BITS] = {\n  ");
271         dump_array16(lut_nmsedec_ref0, 1 << T1_NMSEDEC_BITS);
272
273         return 0;
274 }