Remove typos from comments and man pages
[openjpeg.git] / src / bin / jp2 / convert.c
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) 2006-2007, Parvatha Elangovan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions
19  * are met:
20  * 1. Redistributions of source code must retain the above copyright
21  *    notice, this list of conditions and the following disclaimer.
22  * 2. Redistributions in binary form must reproduce the above copyright
23  *    notice, this list of conditions and the following disclaimer in the
24  *    documentation and/or other materials provided with the distribution.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
27  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 #include "opj_apps_config.h"
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <ctype.h>
44
45 #include "openjpeg.h"
46 #include "convert.h"
47
48 /*
49  * Get logarithm of an integer and round downwards.
50  *
51  * log2(a)
52  */
53 static int int_floorlog2(int a) {
54     int l;
55     for (l = 0; a > 1; l++) {
56         a >>= 1;
57     }
58     return l;
59 }
60
61 /* Component precision scaling */
62 void clip_component(opj_image_comp_t* component, OPJ_UINT32 precision)
63 {
64         OPJ_SIZE_T i;
65         OPJ_SIZE_T len;
66         OPJ_UINT32 umax = (OPJ_UINT32)((OPJ_INT32)-1);
67         
68         len = (OPJ_SIZE_T)component->w * (OPJ_SIZE_T)component->h;
69         if (precision < 32) {
70                 umax = (1U << precision) - 1U;
71         }
72         
73         if (component->sgnd) {
74                 OPJ_INT32* l_data = component->data;
75                 OPJ_INT32 max = (OPJ_INT32)(umax / 2U);
76                 OPJ_INT32 min = -max - 1;
77                 for (i = 0; i < len; ++i) {
78                         if (l_data[i] > max) {
79                                 l_data[i] = max;
80                         } else if (l_data[i] < min) {
81                                 l_data[i] = min;
82                         }
83                 }
84         } else {
85                 OPJ_UINT32* l_data = (OPJ_UINT32*)component->data;
86                 for (i = 0; i < len; ++i) {
87                         if (l_data[i] > umax) {
88                                 l_data[i] = umax;
89                         }
90                 }
91         }
92         component->prec = precision;
93 }
94
95 /* Component precision scaling */
96 static void scale_component_up(opj_image_comp_t* component, OPJ_UINT32 precision)
97 {
98         OPJ_SIZE_T i, len;
99         
100         len = (OPJ_SIZE_T)component->w * (OPJ_SIZE_T)component->h;
101         if (component->sgnd) {
102                 OPJ_INT64  newMax = (OPJ_INT64)(1U << (precision - 1));
103                 OPJ_INT64  oldMax = (OPJ_INT64)(1U << (component->prec - 1));
104                 OPJ_INT32* l_data = component->data;
105                 for (i = 0; i < len; ++i) {
106                         l_data[i] = (OPJ_INT32)(((OPJ_INT64)l_data[i] * newMax) / oldMax);
107                 }
108         } else {
109                 OPJ_UINT64  newMax = (OPJ_UINT64)((1U << precision) - 1U);
110                 OPJ_UINT64  oldMax = (OPJ_UINT64)((1U << component->prec) - 1U);
111                 OPJ_UINT32* l_data = (OPJ_UINT32*)component->data;
112                 for (i = 0; i < len; ++i) {
113                         l_data[i] = (OPJ_UINT32)(((OPJ_UINT64)l_data[i] * newMax) / oldMax);
114                 }
115         }
116         component->prec = precision;
117         component->bpp = precision;
118 }
119 void scale_component(opj_image_comp_t* component, OPJ_UINT32 precision)
120 {
121         int shift;
122         OPJ_SIZE_T i, len;
123         
124         if (component->prec == precision) {
125                 return;
126         }
127         if (component->prec < precision) {
128                 scale_component_up(component, precision);
129                 return;
130         }
131         shift = (int)(component->prec - precision);
132         len = (OPJ_SIZE_T)component->w * (OPJ_SIZE_T)component->h;
133         if (component->sgnd) {
134                 OPJ_INT32* l_data = component->data;
135                 for (i = 0; i < len; ++i) {
136                         l_data[i] >>= shift;
137                 }
138         } else {
139                 OPJ_UINT32* l_data = (OPJ_UINT32*)component->data;
140                 for (i = 0; i < len; ++i) {
141                         l_data[i] >>= shift;
142                 }
143         }
144         component->bpp = precision;
145         component->prec = precision;
146 }
147
148
149 /* planar / interleaved conversions */
150 /* used by PNG/TIFF */
151 static void convert_32s_C1P1(const OPJ_INT32* pSrc, OPJ_INT32* const* pDst, OPJ_SIZE_T length)
152 {
153         memcpy(pDst[0], pSrc, length * sizeof(OPJ_INT32));
154 }
155 static void convert_32s_C2P2(const OPJ_INT32* pSrc, OPJ_INT32* const* pDst, OPJ_SIZE_T length)
156 {
157         OPJ_SIZE_T i;
158         OPJ_INT32* pDst0 = pDst[0];
159         OPJ_INT32* pDst1 = pDst[1];
160         
161         for (i = 0; i < length; i++) {
162                 pDst0[i] = pSrc[2*i+0];
163                 pDst1[i] = pSrc[2*i+1];
164         }
165 }
166 static void convert_32s_C3P3(const OPJ_INT32* pSrc, OPJ_INT32* const* pDst, OPJ_SIZE_T length)
167 {
168         OPJ_SIZE_T i;
169         OPJ_INT32* pDst0 = pDst[0];
170         OPJ_INT32* pDst1 = pDst[1];
171         OPJ_INT32* pDst2 = pDst[2];
172         
173         for (i = 0; i < length; i++) {
174                 pDst0[i] = pSrc[3*i+0];
175                 pDst1[i] = pSrc[3*i+1];
176                 pDst2[i] = pSrc[3*i+2];
177         }
178 }
179 static void convert_32s_C4P4(const OPJ_INT32* pSrc, OPJ_INT32* const* pDst, OPJ_SIZE_T length)
180 {
181         OPJ_SIZE_T i;
182         OPJ_INT32* pDst0 = pDst[0];
183         OPJ_INT32* pDst1 = pDst[1];
184         OPJ_INT32* pDst2 = pDst[2];
185         OPJ_INT32* pDst3 = pDst[3];
186         
187         for (i = 0; i < length; i++) {
188                 pDst0[i] = pSrc[4*i+0];
189                 pDst1[i] = pSrc[4*i+1];
190                 pDst2[i] = pSrc[4*i+2];
191                 pDst3[i] = pSrc[4*i+3];
192         }
193 }
194 const convert_32s_CXPX convert_32s_CXPX_LUT[5] = {
195         NULL,
196         convert_32s_C1P1,
197         convert_32s_C2P2,
198         convert_32s_C3P3,
199         convert_32s_C4P4
200 };
201
202 static void convert_32s_P1C1(OPJ_INT32 const* const* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length, OPJ_INT32 adjust)
203 {
204         OPJ_SIZE_T i;
205         const OPJ_INT32* pSrc0 = pSrc[0];
206         
207         for (i = 0; i < length; i++) {
208                 pDst[i] = pSrc0[i] + adjust;
209         }
210 }
211 static void convert_32s_P2C2(OPJ_INT32 const* const* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length, OPJ_INT32 adjust)
212 {
213         OPJ_SIZE_T i;
214         const OPJ_INT32* pSrc0 = pSrc[0];
215         const OPJ_INT32* pSrc1 = pSrc[1];
216         
217         for (i = 0; i < length; i++) {
218                 pDst[2*i+0] = pSrc0[i] + adjust;
219                 pDst[2*i+1] = pSrc1[i] + adjust;
220         }
221 }
222 static void convert_32s_P3C3(OPJ_INT32 const* const* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length, OPJ_INT32 adjust)
223 {
224         OPJ_SIZE_T i;
225         const OPJ_INT32* pSrc0 = pSrc[0];
226         const OPJ_INT32* pSrc1 = pSrc[1];
227         const OPJ_INT32* pSrc2 = pSrc[2];
228         
229         for (i = 0; i < length; i++) {
230                 pDst[3*i+0] = pSrc0[i] + adjust;
231                 pDst[3*i+1] = pSrc1[i] + adjust;
232                 pDst[3*i+2] = pSrc2[i] + adjust;
233         }
234 }
235 static void convert_32s_P4C4(OPJ_INT32 const* const* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length, OPJ_INT32 adjust)
236 {
237         OPJ_SIZE_T i;
238         const OPJ_INT32* pSrc0 = pSrc[0];
239         const OPJ_INT32* pSrc1 = pSrc[1];
240         const OPJ_INT32* pSrc2 = pSrc[2];
241         const OPJ_INT32* pSrc3 = pSrc[3];
242         
243         for (i = 0; i < length; i++) {
244                 pDst[4*i+0] = pSrc0[i] + adjust;
245                 pDst[4*i+1] = pSrc1[i] + adjust;
246                 pDst[4*i+2] = pSrc2[i] + adjust;
247                 pDst[4*i+3] = pSrc3[i] + adjust;
248         }
249 }
250 const convert_32s_PXCX convert_32s_PXCX_LUT[5] = {
251         NULL,
252         convert_32s_P1C1,
253         convert_32s_P2C2,
254         convert_32s_P3C3,
255         convert_32s_P4C4
256 };
257
258 /* bit depth conversions */
259 /* used by PNG/TIFF up to 8bpp */
260 static void convert_1u32s_C1R(const OPJ_BYTE* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length)
261 {
262         OPJ_SIZE_T i;
263         for (i = 0; i < (length & ~(OPJ_SIZE_T)7U); i+=8U) {
264                 OPJ_UINT32 val = *pSrc++;
265                 pDst[i+0] = (OPJ_INT32)( val >> 7);
266                 pDst[i+1] = (OPJ_INT32)((val >> 6) & 0x1U);
267                 pDst[i+2] = (OPJ_INT32)((val >> 5) & 0x1U);
268                 pDst[i+3] = (OPJ_INT32)((val >> 4) & 0x1U);
269                 pDst[i+4] = (OPJ_INT32)((val >> 3) & 0x1U);
270                 pDst[i+5] = (OPJ_INT32)((val >> 2) & 0x1U);
271                 pDst[i+6] = (OPJ_INT32)((val >> 1) & 0x1U);
272                 pDst[i+7] = (OPJ_INT32)(val & 0x1U);
273         }
274         if (length & 7U) {
275                 OPJ_UINT32 val = *pSrc++;
276                 length = length & 7U;
277                 pDst[i+0] = (OPJ_INT32)(val >> 7);
278                 
279                 if (length > 1U) {
280                         pDst[i+1] = (OPJ_INT32)((val >> 6) & 0x1U);
281                         if (length > 2U) {
282                                 pDst[i+2] = (OPJ_INT32)((val >> 5) & 0x1U);
283                                 if (length > 3U) {
284                                         pDst[i+3] = (OPJ_INT32)((val >> 4) & 0x1U);
285                                         if (length > 4U) {
286                                                 pDst[i+4] = (OPJ_INT32)((val >> 3) & 0x1U);
287                                                 if (length > 5U) {
288                                                         pDst[i+5] = (OPJ_INT32)((val >> 2) & 0x1U);
289                                                         if (length > 6U) {
290                                                                 pDst[i+6] = (OPJ_INT32)((val >> 1) & 0x1U);
291                                                         }
292                                                 }
293                                         }
294                                 }
295                         }
296                 }
297         }
298 }
299 static void convert_2u32s_C1R(const OPJ_BYTE* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length)
300 {
301         OPJ_SIZE_T i;
302         for (i = 0; i < (length & ~(OPJ_SIZE_T)3U); i+=4U) {
303                 OPJ_UINT32 val = *pSrc++;
304                 pDst[i+0] = (OPJ_INT32)( val >> 6);
305                 pDst[i+1] = (OPJ_INT32)((val >> 4) & 0x3U);
306                 pDst[i+2] = (OPJ_INT32)((val >> 2) & 0x3U);
307                 pDst[i+3] = (OPJ_INT32)(val & 0x3U);
308         }
309         if (length & 3U) {
310                 OPJ_UINT32 val = *pSrc++;
311                 length = length & 3U;
312                 pDst[i+0] =  (OPJ_INT32)(val >> 6);
313                 
314                 if (length > 1U) {
315                         pDst[i+1] = (OPJ_INT32)((val >> 4) & 0x3U);
316                         if (length > 2U) {
317                                 pDst[i+2] = (OPJ_INT32)((val >> 2) & 0x3U);
318                                 
319                         }
320                 }
321         }
322 }
323 static void convert_4u32s_C1R(const OPJ_BYTE* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length)
324 {
325         OPJ_SIZE_T i;
326         for (i = 0; i < (length & ~(OPJ_SIZE_T)1U); i+=2U) {
327                 OPJ_UINT32 val = *pSrc++;
328                 pDst[i+0] = (OPJ_INT32)(val >> 4);
329                 pDst[i+1] = (OPJ_INT32)(val & 0xFU);
330         }
331         if (length & 1U) {
332                 OPJ_UINT8 val = *pSrc++;
333                 pDst[i+0] = (OPJ_INT32)(val >> 4);
334         }
335 }
336 static void convert_6u32s_C1R(const OPJ_BYTE* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length)
337 {
338         OPJ_SIZE_T i;
339         for (i = 0; i < (length & ~(OPJ_SIZE_T)3U); i+=4U) {
340                 OPJ_UINT32 val0 = *pSrc++;
341                 OPJ_UINT32 val1 = *pSrc++;
342                 OPJ_UINT32 val2 = *pSrc++;
343                 pDst[i+0] = (OPJ_INT32)(val0 >> 2);
344                 pDst[i+1] = (OPJ_INT32)(((val0 & 0x3U) << 4) | (val1 >> 4));
345                 pDst[i+2] = (OPJ_INT32)(((val1 & 0xFU) << 2) | (val2 >> 6));
346                 pDst[i+3] = (OPJ_INT32)(val2 & 0x3FU);
347                 
348         }
349         if (length & 3U) {
350                 OPJ_UINT32 val0 = *pSrc++;
351                 length = length & 3U;
352                 pDst[i+0] = (OPJ_INT32)(val0 >> 2);
353                 
354                 if (length > 1U) {
355                         OPJ_UINT32 val1 = *pSrc++;
356                         pDst[i+1] = (OPJ_INT32)(((val0 & 0x3U) << 4) | (val1 >> 4));
357                         if (length > 2U) {
358                                 OPJ_UINT32 val2 = *pSrc++;
359                                 pDst[i+2] = (OPJ_INT32)(((val1 & 0xFU) << 2) | (val2 >> 6));
360                         }
361                 }
362         }
363 }
364 static void convert_8u32s_C1R(const OPJ_BYTE* pSrc, OPJ_INT32* pDst, OPJ_SIZE_T length)
365 {
366         OPJ_SIZE_T i;
367         for (i = 0; i < length; i++) {
368                 pDst[i] = pSrc[i];
369         }
370 }
371 const convert_XXx32s_C1R convert_XXu32s_C1R_LUT[9] = {
372         NULL,
373         convert_1u32s_C1R,
374         convert_2u32s_C1R,
375         NULL,
376         convert_4u32s_C1R,
377         NULL,
378         convert_6u32s_C1R,
379         NULL,
380         convert_8u32s_C1R
381 };
382
383
384 static void convert_32s1u_C1R(const OPJ_INT32* pSrc, OPJ_BYTE* pDst, OPJ_SIZE_T length)
385 {
386         OPJ_SIZE_T i;
387         for (i = 0; i < (length & ~(OPJ_SIZE_T)7U); i+=8U) {
388                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
389                 OPJ_UINT32 src1 = (OPJ_UINT32)pSrc[i+1];
390                 OPJ_UINT32 src2 = (OPJ_UINT32)pSrc[i+2];
391                 OPJ_UINT32 src3 = (OPJ_UINT32)pSrc[i+3];
392                 OPJ_UINT32 src4 = (OPJ_UINT32)pSrc[i+4];
393                 OPJ_UINT32 src5 = (OPJ_UINT32)pSrc[i+5];
394                 OPJ_UINT32 src6 = (OPJ_UINT32)pSrc[i+6];
395                 OPJ_UINT32 src7 = (OPJ_UINT32)pSrc[i+7];
396                 
397                 *pDst++ = (OPJ_BYTE)((src0 << 7) | (src1 << 6) | (src2 << 5) | (src3 << 4) | (src4 << 3) | (src5 << 2) | (src6 << 1) | src7);
398         }
399         
400         if (length & 7U) {
401                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
402                 OPJ_UINT32 src1 = 0U;
403                 OPJ_UINT32 src2 = 0U;
404                 OPJ_UINT32 src3 = 0U;
405                 OPJ_UINT32 src4 = 0U;
406                 OPJ_UINT32 src5 = 0U;
407                 OPJ_UINT32 src6 = 0U;
408                 length = length & 7U;
409                 
410                 if (length > 1U) {
411                         src1 = (OPJ_UINT32)pSrc[i+1];
412                         if (length > 2U) {
413                                 src2 = (OPJ_UINT32)pSrc[i+2];
414                                 if (length > 3U) {
415                                         src3 = (OPJ_UINT32)pSrc[i+3];
416                                         if (length > 4U) {
417                                                 src4 = (OPJ_UINT32)pSrc[i+4];
418                                                 if (length > 5U) {
419                                                         src5 = (OPJ_UINT32)pSrc[i+5];
420                                                         if (length > 6U) {
421                                                                 src6 = (OPJ_UINT32)pSrc[i+6];
422                                                         }
423                                                 }
424                                         }
425                                 }
426                         }
427                 }
428                 *pDst++ = (OPJ_BYTE)((src0 << 7) | (src1 << 6) | (src2 << 5) | (src3 << 4) | (src4 << 3) | (src5 << 2) | (src6 << 1));
429         }
430 }
431
432 static void convert_32s2u_C1R(const OPJ_INT32* pSrc, OPJ_BYTE* pDst, OPJ_SIZE_T length)
433 {
434         OPJ_SIZE_T i;
435         for (i = 0; i < (length & ~(OPJ_SIZE_T)3U); i+=4U) {
436                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
437                 OPJ_UINT32 src1 = (OPJ_UINT32)pSrc[i+1];
438                 OPJ_UINT32 src2 = (OPJ_UINT32)pSrc[i+2];
439                 OPJ_UINT32 src3 = (OPJ_UINT32)pSrc[i+3];
440                 
441                 *pDst++ = (OPJ_BYTE)((src0 << 6) | (src1 << 4) | (src2 << 2) | src3);
442         }
443         
444         if (length & 3U) {
445                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
446                 OPJ_UINT32 src1 = 0U;
447                 OPJ_UINT32 src2 = 0U;
448                 length = length & 3U;
449                 
450                 if (length > 1U) {
451                         src1 = (OPJ_UINT32)pSrc[i+1];
452                         if (length > 2U) {
453                                 src2 = (OPJ_UINT32)pSrc[i+2];
454                         }
455                 }
456                 *pDst++ = (OPJ_BYTE)((src0 << 6) | (src1 << 4) | (src2 << 2));
457         }
458 }
459
460 static void convert_32s4u_C1R(const OPJ_INT32* pSrc, OPJ_BYTE* pDst, OPJ_SIZE_T length)
461 {
462         OPJ_SIZE_T i;
463         for (i = 0; i < (length & ~(OPJ_SIZE_T)1U); i+=2U) {
464                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
465                 OPJ_UINT32 src1 = (OPJ_UINT32)pSrc[i+1];
466                 
467                 *pDst++ = (OPJ_BYTE)((src0 << 4) | src1);
468         }
469         
470         if (length & 1U) {
471                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
472                 *pDst++ = (OPJ_BYTE)((src0 << 4));
473         }
474 }
475
476 static void convert_32s6u_C1R(const OPJ_INT32* pSrc, OPJ_BYTE* pDst, OPJ_SIZE_T length)
477 {
478         OPJ_SIZE_T i;
479         for (i = 0; i < (length & ~(OPJ_SIZE_T)3U); i+=4U) {
480                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
481                 OPJ_UINT32 src1 = (OPJ_UINT32)pSrc[i+1];
482                 OPJ_UINT32 src2 = (OPJ_UINT32)pSrc[i+2];
483                 OPJ_UINT32 src3 = (OPJ_UINT32)pSrc[i+3];
484                 
485                 *pDst++ = (OPJ_BYTE)((src0 << 2) | (src1 >> 4));
486                 *pDst++ = (OPJ_BYTE)(((src1 & 0xFU) << 4) | (src2 >> 2));
487                 *pDst++ = (OPJ_BYTE)(((src2 & 0x3U) << 6) | src3);
488         }
489         
490         if (length & 3U) {
491                 OPJ_UINT32 src0 = (OPJ_UINT32)pSrc[i+0];
492                 OPJ_UINT32 src1 = 0U;
493                 OPJ_UINT32 src2 = 0U;
494                 length = length & 3U;
495                 
496                 if (length > 1U) {
497                         src1 = (OPJ_UINT32)pSrc[i+1];
498                         if (length > 2U) {
499                                 src2 = (OPJ_UINT32)pSrc[i+2];
500                         }
501                 }
502                 *pDst++ = (OPJ_BYTE)((src0 << 2) | (src1 >> 4));
503                 if (length > 1U) {
504                         *pDst++ = (OPJ_BYTE)(((src1 & 0xFU) << 4) | (src2 >> 2));
505                         if (length > 2U) {
506                                 *pDst++ = (OPJ_BYTE)(((src2 & 0x3U) << 6));
507                         }
508                 }
509         }
510 }
511 static void convert_32s8u_C1R(const OPJ_INT32* pSrc, OPJ_BYTE* pDst, OPJ_SIZE_T length)
512 {
513         OPJ_SIZE_T i;
514         for (i = 0; i < length; ++i) {
515                 pDst[i] = (OPJ_BYTE)pSrc[i];
516         }
517 }
518 const convert_32sXXx_C1R convert_32sXXu_C1R_LUT[9] = {
519         NULL,
520         convert_32s1u_C1R,
521         convert_32s2u_C1R,
522         NULL,
523         convert_32s4u_C1R,
524         NULL,
525         convert_32s6u_C1R,
526         NULL,
527         convert_32s8u_C1R
528 };
529
530 /* -->> -->> -->> -->>
531
532   TGA IMAGE FORMAT
533
534  <<-- <<-- <<-- <<-- */
535
536 #ifdef INFORMATION_ONLY
537 /* TGA header definition. */
538 struct tga_header
539 {                           
540     unsigned char   id_length;              /* Image id field length    */
541     unsigned char   colour_map_type;        /* Colour map type          */
542     unsigned char   image_type;             /* Image type               */
543     /*
544     ** Colour map specification
545     */
546     unsigned short  colour_map_index;       /* First entry index        */
547     unsigned short  colour_map_length;      /* Colour map length        */
548     unsigned char   colour_map_entry_size;  /* Colour map entry size    */
549     /*
550     ** Image specification
551     */
552     unsigned short  x_origin;               /* x origin of image        */
553     unsigned short  y_origin;               /* u origin of image        */
554     unsigned short  image_width;            /* Image width              */
555     unsigned short  image_height;           /* Image height             */
556     unsigned char   pixel_depth;            /* Pixel depth              */
557     unsigned char   image_desc;             /* Image descriptor         */
558 };
559 #endif /* INFORMATION_ONLY */
560
561 static unsigned short get_ushort(const unsigned char *data) {
562     unsigned short val = *(const unsigned short *)data;
563 #ifdef OPJ_BIG_ENDIAN
564     val = ((val & 0xffU) << 8) | (val >> 8);
565 #endif
566     return val;
567 }
568
569 #define TGA_HEADER_SIZE 18
570
571 static int tga_readheader(FILE *fp, unsigned int *bits_per_pixel, 
572                           unsigned int *width, unsigned int *height, int *flip_image)
573 {
574     int palette_size;
575     unsigned char tga[TGA_HEADER_SIZE];
576     unsigned char id_len, /*cmap_type,*/ image_type;
577     unsigned char pixel_depth, image_desc;
578     unsigned short /*cmap_index,*/ cmap_len, cmap_entry_size;
579     unsigned short /*x_origin, y_origin,*/ image_w, image_h;
580
581     if (!bits_per_pixel || !width || !height || !flip_image)
582         return 0;
583
584     if ( fread(tga, TGA_HEADER_SIZE, 1, fp) != 1 )
585     {
586         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
587         return 0 ;
588     }
589     id_len = tga[0];
590     /*cmap_type = tga[1];*/
591     image_type = tga[2];
592     /*cmap_index = get_ushort(&tga[3]);*/
593     cmap_len = get_ushort(&tga[5]);
594     cmap_entry_size = tga[7];
595
596
597 #if 0
598     x_origin = get_ushort(&tga[8]);
599     y_origin = get_ushort(&tga[10]);
600 #endif
601     image_w = get_ushort(&tga[12]);
602     image_h = get_ushort(&tga[14]);
603     pixel_depth = tga[16];
604     image_desc  = tga[17];
605
606     *bits_per_pixel = (unsigned int)pixel_depth;
607     *width  = (unsigned int)image_w;
608     *height = (unsigned int)image_h;
609
610     /* Ignore tga identifier, if present ... */
611     if (id_len)
612     {
613         unsigned char *id = (unsigned char *) malloc(id_len);
614                 if(id == 0){
615                         fprintf(stderr, "tga_readheader: memory out\n");
616                         return 0;
617                 }
618         if ( !fread(id, id_len, 1, fp) )
619         {
620             fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
621             free(id);
622             return 0 ;
623         }
624         free(id);
625     }
626
627     /* Test for compressed formats ... not yet supported ...
628     // Note :-  9 - RLE encoded palettized.
629     //             10 - RLE encoded RGB. */
630     if (image_type > 8)
631     {
632         fprintf(stderr, "Sorry, compressed tga files are not currently supported.\n");
633         return 0 ;
634     }
635
636     *flip_image = !(image_desc & 32);
637
638     /* Palettized formats are not yet supported, skip over the palette, if present ... */
639     palette_size = cmap_len * (cmap_entry_size/8);
640
641     if (palette_size>0)
642     {
643         fprintf(stderr, "File contains a palette - not yet supported.");
644         fseek(fp, palette_size, SEEK_CUR);
645     }
646     return 1;
647 }
648
649 #ifdef OPJ_BIG_ENDIAN
650
651 static INLINE OPJ_UINT16 swap16(OPJ_UINT16 x)
652 {
653     return (OPJ_UINT16)(((x & 0x00ffU) <<  8) | ((x & 0xff00U) >>  8));
654 }
655
656 #endif
657
658 static int tga_writeheader(FILE *fp, int bits_per_pixel, int width, int height, 
659                            OPJ_BOOL flip_image)
660 {
661     OPJ_UINT16 image_w, image_h, us0;
662     unsigned char uc0, image_type;
663     unsigned char pixel_depth, image_desc;
664
665     if (!bits_per_pixel || !width || !height)
666         return 0;
667
668     pixel_depth = 0;
669
670     if ( bits_per_pixel < 256 )
671         pixel_depth = (unsigned char)bits_per_pixel;
672     else{
673         fprintf(stderr,"ERROR: Wrong bits per pixel inside tga_header");
674         return 0;
675     }
676     uc0 = 0;
677
678     if(fwrite(&uc0, 1, 1, fp) != 1) goto fails; /* id_length */
679     if(fwrite(&uc0, 1, 1, fp) != 1) goto fails; /* colour_map_type */
680
681     image_type = 2; /* Uncompressed. */
682     if(fwrite(&image_type, 1, 1, fp) != 1) goto fails;
683
684     us0 = 0;
685     if(fwrite(&us0, 2, 1, fp) != 1) goto fails; /* colour_map_index */
686     if(fwrite(&us0, 2, 1, fp) != 1) goto fails; /* colour_map_length */
687     if(fwrite(&uc0, 1, 1, fp) != 1) goto fails; /* colour_map_entry_size */
688
689     if(fwrite(&us0, 2, 1, fp) != 1) goto fails; /* x_origin */
690     if(fwrite(&us0, 2, 1, fp) != 1) goto fails; /* y_origin */
691
692     image_w = (unsigned short)width;
693     image_h = (unsigned short) height;
694
695 #ifndef OPJ_BIG_ENDIAN
696     if(fwrite(&image_w, 2, 1, fp) != 1) goto fails;
697     if(fwrite(&image_h, 2, 1, fp) != 1) goto fails;
698 #else
699     image_w = swap16(image_w);
700     image_h = swap16(image_h);
701     if(fwrite(&image_w, 2, 1, fp) != 1) goto fails;
702     if(fwrite(&image_h, 2, 1, fp) != 1) goto fails;
703 #endif
704
705     if(fwrite(&pixel_depth, 1, 1, fp) != 1) goto fails;
706
707     image_desc = 8; /* 8 bits per component. */
708
709     if (flip_image)
710         image_desc |= 32;
711     if(fwrite(&image_desc, 1, 1, fp) != 1) goto fails;
712
713     return 1;
714
715 fails:
716     fputs("\nwrite_tgaheader: write ERROR\n", stderr);
717     return 0;
718 }
719
720 opj_image_t* tgatoimage(const char *filename, opj_cparameters_t *parameters) {
721     FILE *f;
722     opj_image_t *image;
723     unsigned int image_width, image_height, pixel_bit_depth;
724     unsigned int x, y;
725     int flip_image=0;
726     opj_image_cmptparm_t cmptparm[4];   /* maximum 4 components */
727     int numcomps;
728     OPJ_COLOR_SPACE color_space;
729     OPJ_BOOL mono ;
730     OPJ_BOOL save_alpha;
731     int subsampling_dx, subsampling_dy;
732     int i;
733
734     f = fopen(filename, "rb");
735     if (!f) {
736         fprintf(stderr, "Failed to open %s for reading !!\n", filename);
737         return 0;
738     }
739
740     if (!tga_readheader(f, &pixel_bit_depth, &image_width, &image_height, &flip_image)) {
741         fclose(f);
742         return NULL;
743     }
744
745     /* We currently only support 24 & 32 bit tga's ... */
746     if (!((pixel_bit_depth == 24) || (pixel_bit_depth == 32))) {
747         fclose(f);
748         return NULL;
749     }
750
751     /* initialize image components */
752     memset(&cmptparm[0], 0, 4 * sizeof(opj_image_cmptparm_t));
753
754     mono = (pixel_bit_depth == 8) || (pixel_bit_depth == 16);  /* Mono with & without alpha. */
755     save_alpha = (pixel_bit_depth == 16) || (pixel_bit_depth == 32); /* Mono with alpha, or RGB with alpha */
756
757     if (mono) {
758         color_space = OPJ_CLRSPC_GRAY;
759         numcomps = save_alpha ? 2 : 1;
760     }
761     else {
762         numcomps = save_alpha ? 4 : 3;
763         color_space = OPJ_CLRSPC_SRGB;
764     }
765
766     subsampling_dx = parameters->subsampling_dx;
767     subsampling_dy = parameters->subsampling_dy;
768
769     for (i = 0; i < numcomps; i++) {
770         cmptparm[i].prec = 8;
771         cmptparm[i].bpp = 8;
772         cmptparm[i].sgnd = 0;
773         cmptparm[i].dx = (OPJ_UINT32)subsampling_dx;
774         cmptparm[i].dy = (OPJ_UINT32)subsampling_dy;
775         cmptparm[i].w = image_width;
776         cmptparm[i].h = image_height;
777     }
778
779     /* create the image */
780     image = opj_image_create((OPJ_UINT32)numcomps, &cmptparm[0], color_space);
781
782     if (!image) {
783         fclose(f);
784         return NULL;
785     }
786
787
788     /* set image offset and reference grid */
789     image->x0 = (OPJ_UINT32)parameters->image_offset_x0;
790     image->y0 = (OPJ_UINT32)parameters->image_offset_y0;
791     image->x1 = !image->x0 ? (OPJ_UINT32)(image_width - 1)  * (OPJ_UINT32)subsampling_dx + 1 : image->x0 + (OPJ_UINT32)(image_width - 1)  * (OPJ_UINT32)subsampling_dx + 1;
792     image->y1 = !image->y0 ? (OPJ_UINT32)(image_height - 1) * (OPJ_UINT32)subsampling_dy + 1 : image->y0 + (OPJ_UINT32)(image_height - 1) * (OPJ_UINT32)subsampling_dy + 1;
793
794     /* set image data */
795     for (y=0; y < image_height; y++)
796     {
797         int index;
798
799         if (flip_image)
800             index = (int)((image_height-y-1)*image_width);
801         else
802             index = (int)(y*image_width);
803
804         if (numcomps==3)
805         {
806             for (x=0;x<image_width;x++)
807             {
808                 unsigned char r,g,b;
809
810                 if( !fread(&b, 1, 1, f) )
811                 {
812                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
813                     opj_image_destroy(image);
814                     fclose(f);
815                     return NULL;
816                 }
817                 if ( !fread(&g, 1, 1, f) )
818                 {
819                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
820                     opj_image_destroy(image);
821                     fclose(f);
822                     return NULL;
823                 }
824                 if ( !fread(&r, 1, 1, f) )
825                 {
826                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
827                     opj_image_destroy(image);
828                     fclose(f);
829                     return NULL;
830                 }
831
832                 image->comps[0].data[index]=r;
833                 image->comps[1].data[index]=g;
834                 image->comps[2].data[index]=b;
835                 index++;
836             }
837         }
838         else if (numcomps==4)
839         {
840             for (x=0;x<image_width;x++)
841             {
842                 unsigned char r,g,b,a;
843                 if ( !fread(&b, 1, 1, f) )
844                 {
845                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
846                     opj_image_destroy(image);
847                     fclose(f);
848                     return NULL;
849                 }
850                 if ( !fread(&g, 1, 1, f) )
851                 {
852                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
853                     opj_image_destroy(image);
854                     fclose(f);
855                     return NULL;
856                 }
857                 if ( !fread(&r, 1, 1, f) )
858                 {
859                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
860                     opj_image_destroy(image);
861                     fclose(f);
862                     return NULL;
863                 }
864                 if ( !fread(&a, 1, 1, f) )
865                 {
866                     fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
867                     opj_image_destroy(image);
868                     fclose(f);
869                     return NULL;
870                 }
871
872                 image->comps[0].data[index]=r;
873                 image->comps[1].data[index]=g;
874                 image->comps[2].data[index]=b;
875                 image->comps[3].data[index]=a;
876                 index++;
877             }
878         }
879         else {
880             fprintf(stderr, "Currently unsupported bit depth : %s\n", filename);
881         }
882     }
883     fclose(f);
884     return image;
885 }
886
887 int imagetotga(opj_image_t * image, const char *outfile) {
888     int width, height, bpp, x, y;
889     OPJ_BOOL write_alpha;
890     unsigned int i;
891     int adjustR, adjustG, adjustB, fails;
892     unsigned int alpha_channel;
893     float r,g,b,a;
894     unsigned char value;
895     float scale;
896     FILE *fdest;
897     size_t res;
898     fails = 1;
899
900     fdest = fopen(outfile, "wb");
901     if (!fdest) {
902         fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
903         return 1;
904     }
905
906     for (i = 0; i < image->numcomps-1; i++)     {
907         if ((image->comps[0].dx != image->comps[i+1].dx)
908                 ||(image->comps[0].dy != image->comps[i+1].dy)
909                 ||(image->comps[0].prec != image->comps[i+1].prec))     {
910             fclose(fdest);
911             fprintf(stderr, "Unable to create a tga file with such J2K image charateristics.");
912             return 1;
913         }
914     }
915
916     width  = (int)image->comps[0].w;
917     height = (int)image->comps[0].h;
918
919     /* Mono with alpha, or RGB with alpha. */
920     write_alpha = (image->numcomps==2) || (image->numcomps==4);
921
922     /* Write TGA header  */
923     bpp = write_alpha ? 32 : 24;
924
925     if (!tga_writeheader(fdest, bpp, width , height, OPJ_TRUE))
926                 goto fin;
927
928     alpha_channel = image->numcomps-1;
929
930     scale = 255.0f / (float)((1<<image->comps[0].prec)-1);
931
932     adjustR = (image->comps[0].sgnd ? 1 << (image->comps[0].prec - 1) : 0);
933     adjustG = (image->comps[1].sgnd ? 1 << (image->comps[1].prec - 1) : 0);
934     adjustB = (image->comps[2].sgnd ? 1 << (image->comps[2].prec - 1) : 0);
935
936         for (y=0; y < height; y++) 
937    {
938         unsigned int index= (unsigned int)(y*width);
939
940         for (x=0; x < width; x++, index++)      
941   {
942         r = (float)(image->comps[0].data[index] + adjustR);
943
944         if (image->numcomps > 2) 
945  {
946         g = (float)(image->comps[1].data[index] + adjustG);
947         b = (float)(image->comps[2].data[index] + adjustB);
948  }
949         else  
950  {/* Greyscale ... */
951         g = r;
952         b = r;
953  }
954
955 /* TGA format writes BGR ... */
956         if(b > 255.) b = 255.; else if(b < 0.) b = 0.;
957         value = (unsigned char)(b*scale);
958         res = fwrite(&value,1,1,fdest);
959
960         if( res < 1 ) 
961  {
962         fprintf(stderr, "failed to write 1 byte for %s\n", outfile);
963         goto fin;
964  }
965         if(g > 255.) g = 255.; else if(g < 0.) g = 0.;
966         value = (unsigned char)(g*scale);
967         res = fwrite(&value,1,1,fdest);
968
969         if( res < 1 ) 
970  {
971         fprintf(stderr, "failed to write 1 byte for %s\n", outfile);
972         goto fin;
973  }
974         if(r > 255.) r = 255.; else if(r < 0.) r = 0.;
975         value = (unsigned char)(r*scale);
976         res = fwrite(&value,1,1,fdest);
977
978         if( res < 1 ) 
979  {
980         fprintf(stderr, "failed to write 1 byte for %s\n", outfile);
981         goto fin;
982  }
983
984         if (write_alpha) 
985  {
986         a = (float)(image->comps[alpha_channel].data[index]);
987         if(a > 255.) a = 255.; else if(a < 0.) a = 0.;
988         value = (unsigned char)(a*scale);
989         res = fwrite(&value,1,1,fdest);
990
991                 if( res < 1 ) 
992            {
993                 fprintf(stderr, "failed to write 1 byte for %s\n", outfile);
994                 goto fin;
995            }
996  }
997   }
998    }
999         fails = 0;
1000 fin:
1001         fclose(fdest);
1002
1003         return fails;
1004 }
1005
1006 /* -->> -->> -->> -->>
1007
1008 PGX IMAGE FORMAT
1009
1010 <<-- <<-- <<-- <<-- */
1011
1012
1013 static unsigned char readuchar(FILE * f)
1014 {
1015     unsigned char c1;
1016     if ( !fread(&c1, 1, 1, f) )
1017     {
1018         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1019         return 0;
1020     }
1021     return c1;
1022 }
1023
1024 static unsigned short readushort(FILE * f, int bigendian)
1025 {
1026     unsigned char c1, c2;
1027     if ( !fread(&c1, 1, 1, f) )
1028     {
1029         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1030         return 0;
1031     }
1032     if ( !fread(&c2, 1, 1, f) )
1033     {
1034         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1035         return 0;
1036     }
1037     if (bigendian)
1038         return (unsigned short)((c1 << 8) + c2);
1039     else
1040         return (unsigned short)((c2 << 8) + c1);
1041 }
1042
1043 static unsigned int readuint(FILE * f, int bigendian)
1044 {
1045     unsigned char c1, c2, c3, c4;
1046     if ( !fread(&c1, 1, 1, f) )
1047     {
1048         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1049         return 0;
1050     }
1051     if ( !fread(&c2, 1, 1, f) )
1052     {
1053         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1054         return 0;
1055     }
1056     if ( !fread(&c3, 1, 1, f) )
1057     {
1058         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1059         return 0;
1060     }
1061     if ( !fread(&c4, 1, 1, f) )
1062     {
1063         fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1064         return 0;
1065     }
1066     if (bigendian)
1067         return (unsigned int)(c1 << 24) + (unsigned int)(c2 << 16) + (unsigned int)(c3 << 8) + c4;
1068     else
1069         return (unsigned int)(c4 << 24) + (unsigned int)(c3 << 16) + (unsigned int)(c2 << 8) + c1;
1070 }
1071
1072 opj_image_t* pgxtoimage(const char *filename, opj_cparameters_t *parameters) {
1073     FILE *f = NULL;
1074     int w, h, prec;
1075     int i, numcomps, max;
1076     OPJ_COLOR_SPACE color_space;
1077     opj_image_cmptparm_t cmptparm;      /* maximum of 1 component  */
1078     opj_image_t * image = NULL;
1079     int adjustS, ushift, dshift, force8;
1080
1081     char endian1,endian2,sign;
1082     char signtmp[32];
1083
1084     char temp[32];
1085     int bigendian;
1086     opj_image_comp_t *comp = NULL;
1087
1088     numcomps = 1;
1089     color_space = OPJ_CLRSPC_GRAY;
1090
1091     memset(&cmptparm, 0, sizeof(opj_image_cmptparm_t));
1092
1093     max = 0;
1094
1095     f = fopen(filename, "rb");
1096     if (!f) {
1097         fprintf(stderr, "Failed to open %s for reading !\n", filename);
1098         return NULL;
1099     }
1100
1101     fseek(f, 0, SEEK_SET);
1102     if( fscanf(f, "PG%[ \t]%c%c%[ \t+-]%d%[ \t]%d%[ \t]%d",temp,&endian1,&endian2,signtmp,&prec,temp,&w,temp,&h) != 9){
1103         fclose(f);
1104         fprintf(stderr, "ERROR: Failed to read the right number of element from the fscanf() function!\n");
1105         return NULL;
1106     }
1107
1108     i=0;
1109     sign='+';
1110     while (signtmp[i]!='\0') {
1111         if (signtmp[i]=='-') sign='-';
1112         i++;
1113     }
1114
1115     fgetc(f);
1116     if (endian1=='M' && endian2=='L') {
1117         bigendian = 1;
1118     } else if (endian2=='M' && endian1=='L') {
1119         bigendian = 0;
1120     } else {
1121         fclose(f);
1122         fprintf(stderr, "Bad pgx header, please check input file\n");
1123         return NULL;
1124     }
1125
1126     /* initialize image component */
1127
1128     cmptparm.x0 = (OPJ_UINT32)parameters->image_offset_x0;
1129     cmptparm.y0 = (OPJ_UINT32)parameters->image_offset_y0;
1130     cmptparm.w = !cmptparm.x0 ? (OPJ_UINT32)((w - 1) * parameters->subsampling_dx + 1) : cmptparm.x0 + (OPJ_UINT32)(w - 1) * (OPJ_UINT32)parameters->subsampling_dx + 1;
1131     cmptparm.h = !cmptparm.y0 ? (OPJ_UINT32)((h - 1) * parameters->subsampling_dy + 1) : cmptparm.y0 + (OPJ_UINT32)(h - 1) * (OPJ_UINT32)parameters->subsampling_dy + 1;
1132
1133     if (sign == '-') {
1134         cmptparm.sgnd = 1;
1135     } else {
1136         cmptparm.sgnd = 0;
1137     }
1138     if(prec < 8)
1139     {
1140         force8 = 1;
1141         ushift = 8 - prec; dshift = prec - ushift;
1142         if(cmptparm.sgnd) adjustS = (1<<(prec - 1)); else adjustS = 0;
1143         cmptparm.sgnd = 0;
1144         prec = 8;
1145     }
1146     else ushift = dshift = force8 = adjustS = 0;
1147
1148     cmptparm.prec = (OPJ_UINT32)prec;
1149     cmptparm.bpp = (OPJ_UINT32)prec;
1150     cmptparm.dx = (OPJ_UINT32)parameters->subsampling_dx;
1151     cmptparm.dy = (OPJ_UINT32)parameters->subsampling_dy;
1152
1153     /* create the image */
1154     image = opj_image_create((OPJ_UINT32)numcomps, &cmptparm, color_space);
1155     if(!image) {
1156         fclose(f);
1157         return NULL;
1158     }
1159     /* set image offset and reference grid */
1160     image->x0 = cmptparm.x0;
1161     image->y0 = cmptparm.x0;
1162     image->x1 = cmptparm.w;
1163     image->y1 = cmptparm.h;
1164
1165     /* set image data */
1166
1167     comp = &image->comps[0];
1168
1169     for (i = 0; i < w * h; i++) {
1170         int v;
1171         if(force8)
1172         {
1173             v = readuchar(f) + adjustS;
1174             v = (v<<ushift) + (v>>dshift);
1175             comp->data[i] = (unsigned char)v;
1176
1177             if(v > max) max = v;
1178
1179             continue;
1180         }
1181         if (comp->prec == 8) {
1182             if (!comp->sgnd) {
1183                 v = readuchar(f);
1184             } else {
1185                 v = (char) readuchar(f);
1186             }
1187         } else if (comp->prec <= 16) {
1188             if (!comp->sgnd) {
1189                 v = readushort(f, bigendian);
1190             } else {
1191                 v = (short) readushort(f, bigendian);
1192             }
1193         } else {
1194             if (!comp->sgnd) {
1195                 v = (int)readuint(f, bigendian);
1196             } else {
1197                 v = (int) readuint(f, bigendian);
1198             }
1199         }
1200         if (v > max)
1201             max = v;
1202         comp->data[i] = v;
1203     }
1204     fclose(f);
1205     comp->bpp = (OPJ_UINT32)int_floorlog2(max) + 1;
1206
1207     return image;
1208 }
1209
1210 #define CLAMP(x,a,b) x < a ? a : (x > b ? b : x)
1211
1212 static INLINE int clamp( const int value, const int prec, const int sgnd )
1213 {
1214   if( sgnd )
1215     {
1216     if (prec <= 8)       return CLAMP(value,-128,127);
1217     else if (prec <= 16) return CLAMP(value,-32768,32767);
1218     else                 return CLAMP(value,-2147483647-1,2147483647);
1219     }
1220   else
1221     {
1222     if (prec <= 8)       return CLAMP(value,0,255);
1223     else if (prec <= 16) return CLAMP(value,0,65535);
1224     else                 return value; /*CLAMP(value,0,4294967295);*/
1225     }
1226 }
1227
1228 int imagetopgx(opj_image_t * image, const char *outfile) 
1229 {
1230   int w, h;
1231   int i, j, fails = 1;
1232   unsigned int compno;
1233   FILE *fdest = NULL;
1234
1235   for (compno = 0; compno < image->numcomps; compno++) 
1236         {
1237     opj_image_comp_t *comp = &image->comps[compno];
1238     char bname[256]; /* buffer for name */
1239     char *name = bname; /* pointer */
1240     int nbytes = 0;
1241     size_t res;
1242     const size_t olen = strlen(outfile);
1243     const size_t dotpos = olen - 4;
1244     const size_t total = dotpos + 1 + 1 + 4; /* '-' + '[1-3]' + '.pgx' */
1245
1246     if( outfile[dotpos] != '.' ) 
1247                 {
1248       /* `pgx` was recognized but there is no dot at expected position */
1249       fprintf(stderr, "ERROR -> Impossible happen." );
1250       goto fin;
1251                 }
1252     if( total > 256 ) 
1253                 {
1254       name = (char*)malloc(total+1);
1255                         if (name == NULL) {
1256                                 fprintf(stderr, "imagetopgx: memory out\n");
1257                                 goto fin;
1258                         }
1259                 }
1260     strncpy(name, outfile, dotpos);
1261     sprintf(name+dotpos, "_%u.pgx", compno);
1262     fdest = fopen(name, "wb");
1263     /* don't need name anymore */
1264                         
1265     if (!fdest) 
1266                 {
1267                                 
1268       fprintf(stderr, "ERROR -> failed to open %s for writing\n", name);
1269                         if( total > 256 ) free(name);
1270       goto fin;
1271                 }
1272
1273     w = (int)image->comps[compno].w;
1274     h = (int)image->comps[compno].h;
1275
1276     fprintf(fdest, "PG ML %c %d %d %d\n", comp->sgnd ? '-' : '+', comp->prec,
1277       w, h);
1278
1279     if (comp->prec <= 8) 
1280       nbytes = 1;
1281     else if (comp->prec <= 16)
1282       nbytes = 2;
1283     else
1284       nbytes = 4;
1285
1286     for (i = 0; i < w * h; i++) 
1287                 {
1288       /* FIXME: clamp func is being called within a loop */
1289       const int val = clamp(image->comps[compno].data[i],
1290         (int)comp->prec, (int)comp->sgnd);
1291
1292       for (j = nbytes - 1; j >= 0; j--) 
1293                         {
1294         int v = (int)(val >> (j * 8));
1295         unsigned char byte = (unsigned char)v;
1296         res = fwrite(&byte, 1, 1, fdest);
1297
1298         if( res < 1 ) 
1299                                 {
1300           fprintf(stderr, "failed to write 1 byte for %s\n", name);
1301                                         if( total > 256 ) free(name);
1302           goto fin;
1303                                 }
1304                         }
1305                 }
1306                 if( total > 256 ) free(name);
1307     fclose(fdest); fdest = NULL;
1308         }
1309   fails = 0;
1310 fin:
1311   if(fdest) fclose(fdest);
1312
1313   return fails;
1314 }
1315
1316 /* -->> -->> -->> -->>
1317
1318 PNM IMAGE FORMAT
1319
1320 <<-- <<-- <<-- <<-- */
1321
1322 struct pnm_header
1323 {
1324     int width, height, maxval, depth, format;
1325     char rgb, rgba, gray, graya, bw;
1326     char ok;
1327 };
1328
1329 static char *skip_white(char *s)
1330 {
1331     if (s != NULL)
1332     {
1333         while(*s)
1334         {
1335             if(*s == '\n' || *s == '\r') return NULL;
1336             if(isspace(*s)) { ++s; continue; }
1337             return s;
1338         }
1339     }
1340     return NULL;
1341 }
1342
1343 static char *skip_int(char *start, int *out_n)
1344 {
1345     char *s;
1346     char c;
1347
1348     *out_n = 0;
1349
1350     s = skip_white(start);
1351     if(s == NULL) return NULL;
1352     start = s;
1353
1354     while(*s)
1355     {
1356         if( !isdigit(*s)) break;
1357         ++s;
1358     }
1359     c = *s; *s = 0; *out_n = atoi(start); *s = c;
1360     return s;
1361 }
1362
1363 static char *skip_idf(char *start, char out_idf[256])
1364 {
1365     char *s;
1366     char c;
1367
1368     s = skip_white(start);
1369     if(s == NULL) return NULL;
1370     start = s;
1371
1372     while(*s)
1373     {
1374         if(isalpha(*s) || *s == '_') { ++s; continue; }
1375         break;
1376     }
1377     c = *s; *s = 0; strncpy(out_idf, start, 255); *s = c;
1378     return s;
1379 }
1380
1381 static void read_pnm_header(FILE *reader, struct pnm_header *ph)
1382 {
1383     int format, end, ttype;
1384     char idf[256], type[256];
1385     char line[256];
1386
1387     if (fgets(line, 250, reader) == NULL)
1388     {
1389         fprintf(stderr,"\nWARNING: fgets return a NULL value");
1390         return;
1391     }
1392
1393     if(line[0] != 'P')
1394     {
1395         fprintf(stderr,"read_pnm_header:PNM:magic P missing\n"); return;
1396     }
1397     format = atoi(line + 1);
1398     if(format < 1 || format > 7)
1399     {
1400         fprintf(stderr,"read_pnm_header:magic format %d invalid\n", format);
1401         return;
1402     }
1403     ph->format = format;
1404     ttype = end = 0;
1405
1406     while(fgets(line, 250, reader))
1407     {
1408         char *s;
1409         int allow_null = 0;
1410
1411         if(*line == '#') continue;
1412
1413         s = line;
1414
1415         if(format == 7)
1416         {
1417             s = skip_idf(s, idf);
1418
1419             if(s == NULL || *s == 0) return;
1420
1421             if(strcmp(idf, "ENDHDR") == 0)
1422             {
1423                 end = 1; break;
1424             }
1425             if(strcmp(idf, "WIDTH") == 0)
1426             {
1427                 s = skip_int(s, &ph->width);
1428                 if(s == NULL || *s == 0) return;
1429
1430                 continue;
1431             }
1432             if(strcmp(idf, "HEIGHT") == 0)
1433             {
1434                 s = skip_int(s, &ph->height);
1435                 if(s == NULL || *s == 0) return;
1436
1437                 continue;
1438             }
1439             if(strcmp(idf, "DEPTH") == 0)
1440             {
1441                 s = skip_int(s, &ph->depth);
1442                 if(s == NULL || *s == 0) return;
1443
1444                 continue;
1445             }
1446             if(strcmp(idf, "MAXVAL") == 0)
1447             {
1448                 s = skip_int(s, &ph->maxval);
1449                 if(s == NULL || *s == 0) return;
1450
1451                 continue;
1452             }
1453             if(strcmp(idf, "TUPLTYPE") == 0)
1454             {
1455                 s = skip_idf(s, type);
1456                 if(s == NULL || *s == 0) return;
1457
1458                 if(strcmp(type, "BLACKANDWHITE") == 0)
1459                 {
1460                     ph->bw = 1; ttype = 1; continue;
1461                 }
1462                 if(strcmp(type, "GRAYSCALE") == 0)
1463                 {
1464                     ph->gray = 1; ttype = 1; continue;
1465                 }
1466                 if(strcmp(type, "GRAYSCALE_ALPHA") == 0)
1467                 {
1468                     ph->graya = 1; ttype = 1; continue;
1469                 }
1470                 if(strcmp(type, "RGB") == 0)
1471                 {
1472                     ph->rgb = 1; ttype = 1; continue;
1473                 }
1474                 if(strcmp(type, "RGB_ALPHA") == 0)
1475                 {
1476                     ph->rgba = 1; ttype = 1; continue;
1477                 }
1478                 fprintf(stderr,"read_pnm_header:unknown P7 TUPLTYPE %s\n",type);
1479                 return;
1480             }
1481             fprintf(stderr,"read_pnm_header:unknown P7 idf %s\n",idf);
1482             return;
1483         } /* if(format == 7) */
1484
1485         /* Here format is in range [1,6] */
1486         if (ph->width == 0) {
1487             s = skip_int(s, &ph->width);
1488             if ((s == NULL) || (*s == 0) || (ph->width < 1)) return;
1489             allow_null = 1;
1490         }
1491         if (ph->height == 0) {
1492             s = skip_int(s, &ph->height);
1493             if ((s == NULL) && allow_null) continue;
1494             if ((s == NULL) || (*s == 0) || (ph->height < 1)) return;
1495             if(format == 1 || format == 4) {
1496                 break;
1497             }
1498             allow_null = 1;
1499         }
1500         /* here, format is in P2, P3, P5, P6 */
1501         s = skip_int(s, &ph->maxval);
1502         if ((s == NULL) && allow_null) continue;
1503         if ((s == NULL) || (*s == 0)) return;
1504         break;
1505     }/* while(fgets( ) */
1506     if(format == 2 || format == 3 || format > 4)
1507     {
1508         if(ph->maxval < 1 || ph->maxval > 65535) return;
1509     }
1510     if(ph->width < 1 || ph->height < 1) return;
1511
1512     if(format == 7)
1513     {
1514         if(!end)
1515         {
1516             fprintf(stderr,"read_pnm_header:P7 without ENDHDR\n"); return;
1517         }
1518         if(ph->depth < 1 || ph->depth > 4) return;
1519
1520         if (ttype)
1521             ph->ok = 1;
1522     }
1523     else
1524     {
1525         ph->ok = 1;
1526         if(format == 1 || format == 4)
1527         {
1528             ph->maxval = 255;
1529         }
1530     }
1531 }
1532
1533 static int has_prec(int val)
1534 {
1535     if(val < 2) return 1;
1536     if(val < 4) return 2;
1537     if(val < 8) return 3;
1538     if(val < 16) return 4;
1539     if(val < 32) return 5;
1540     if(val < 64) return 6;
1541     if(val < 128) return 7;
1542     if(val < 256) return 8;
1543     if(val < 512) return 9;
1544     if(val < 1024) return 10;
1545     if(val < 2048) return 11;
1546     if(val < 4096) return 12;
1547     if(val < 8192) return 13;
1548     if(val < 16384) return 14;
1549     if(val < 32768) return 15;
1550     return 16;
1551 }
1552
1553 opj_image_t* pnmtoimage(const char *filename, opj_cparameters_t *parameters) {
1554     int subsampling_dx = parameters->subsampling_dx;
1555     int subsampling_dy = parameters->subsampling_dy;
1556
1557     FILE *fp = NULL;
1558     int i, compno, numcomps, w, h, prec, format;
1559     OPJ_COLOR_SPACE color_space;
1560     opj_image_cmptparm_t cmptparm[4]; /* RGBA: max. 4 components */
1561     opj_image_t * image = NULL;
1562     struct pnm_header header_info;
1563
1564     if((fp = fopen(filename, "rb")) == NULL)
1565     {
1566         fprintf(stderr, "pnmtoimage:Failed to open %s for reading!\n",filename);
1567         return NULL;
1568     }
1569     memset(&header_info, 0, sizeof(struct pnm_header));
1570
1571     read_pnm_header(fp, &header_info);
1572
1573     if(!header_info.ok) { fclose(fp); return NULL; }
1574
1575     format = header_info.format;
1576
1577     switch(format)
1578     {
1579     case 1: /* ascii bitmap */
1580     case 4: /* raw bitmap */
1581         numcomps = 1;
1582         break;
1583
1584     case 2: /* ascii greymap */
1585     case 5: /* raw greymap */
1586         numcomps = 1;
1587         break;
1588
1589     case 3: /* ascii pixmap */
1590     case 6: /* raw pixmap */
1591         numcomps = 3;
1592         break;
1593
1594     case 7: /* arbitrary map */
1595         numcomps = header_info.depth;
1596         break;
1597
1598     default: fclose(fp); return NULL;
1599     }
1600     if(numcomps < 3)
1601         color_space = OPJ_CLRSPC_GRAY;/* GRAY, GRAYA */
1602     else
1603         color_space = OPJ_CLRSPC_SRGB;/* RGB, RGBA */
1604
1605     prec = has_prec(header_info.maxval);
1606
1607     if(prec < 8) prec = 8;
1608
1609     w = header_info.width;
1610     h = header_info.height;
1611     subsampling_dx = parameters->subsampling_dx;
1612     subsampling_dy = parameters->subsampling_dy;
1613
1614     memset(&cmptparm[0], 0, (size_t)numcomps * sizeof(opj_image_cmptparm_t));
1615
1616     for(i = 0; i < numcomps; i++)
1617     {
1618         cmptparm[i].prec = (OPJ_UINT32)prec;
1619         cmptparm[i].bpp = (OPJ_UINT32)prec;
1620         cmptparm[i].sgnd = 0;
1621         cmptparm[i].dx = (OPJ_UINT32)subsampling_dx;
1622         cmptparm[i].dy = (OPJ_UINT32)subsampling_dy;
1623         cmptparm[i].w = (OPJ_UINT32)w;
1624         cmptparm[i].h = (OPJ_UINT32)h;
1625     }
1626     image = opj_image_create((OPJ_UINT32)numcomps, &cmptparm[0], color_space);
1627
1628     if(!image) { fclose(fp); return NULL; }
1629
1630     /* set image offset and reference grid */
1631     image->x0 = (OPJ_UINT32)parameters->image_offset_x0;
1632     image->y0 = (OPJ_UINT32)parameters->image_offset_y0;
1633     image->x1 = (OPJ_UINT32)(parameters->image_offset_x0 + (w - 1) * subsampling_dx + 1);
1634     image->y1 = (OPJ_UINT32)(parameters->image_offset_y0 + (h - 1) * subsampling_dy + 1);
1635
1636     if((format == 2) || (format == 3)) /* ascii pixmap */
1637     {
1638         unsigned int index;
1639
1640         for (i = 0; i < w * h; i++)
1641         {
1642             for(compno = 0; compno < numcomps; compno++)
1643             {
1644                 index = 0;
1645                 if (fscanf(fp, "%u", &index) != 1)
1646                     fprintf(stderr, "\nWARNING: fscanf return a number of element different from the expected.\n");
1647
1648                 image->comps[compno].data[i] = (OPJ_INT32)(index * 255)/header_info.maxval;
1649             }
1650         }
1651     }
1652     else
1653         if((format == 5)
1654                 || (format == 6)
1655                 ||((format == 7)
1656                    && (   header_info.gray || header_info.graya
1657                           || header_info.rgb || header_info.rgba)))/* binary pixmap */
1658         {
1659             unsigned char c0, c1, one;
1660
1661             one = (prec < 9);
1662
1663             for (i = 0; i < w * h; i++)
1664             {
1665                 for(compno = 0; compno < numcomps; compno++)
1666                 {
1667                 if ( !fread(&c0, 1, 1, fp) )
1668                   {
1669                   fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1670                   opj_image_destroy(image);
1671                   fclose(fp);
1672                   return NULL;
1673                   }
1674                     if(one)
1675                     {
1676                         image->comps[compno].data[i] = c0;
1677                     }
1678                     else
1679                     {
1680                         if ( !fread(&c1, 1, 1, fp) )
1681                             fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1682                         /* netpbm: */
1683                         image->comps[compno].data[i] = ((c0<<8) | c1);
1684                     }
1685                 }
1686             }
1687         }
1688         else
1689             if(format == 1) /* ascii bitmap */
1690             {
1691                 for (i = 0; i < w * h; i++)
1692                 {
1693                     unsigned int index;
1694
1695                     if ( fscanf(fp, "%u", &index) != 1)
1696                         fprintf(stderr, "\nWARNING: fscanf return a number of element different from the expected.\n");
1697
1698                     image->comps[0].data[i] = (index?0:255);
1699                 }
1700             }
1701             else
1702                 if(format == 4)
1703                 {
1704                     int x, y, bit;
1705                     unsigned char uc;
1706
1707                     i = 0;
1708                     for(y = 0; y < h; ++y)
1709                     {
1710                         bit = -1; uc = 0;
1711
1712                         for(x = 0; x < w; ++x)
1713                         {
1714                             if(bit == -1)
1715                             {
1716                                 bit = 7;
1717                                 uc = (unsigned char)getc(fp);
1718                             }
1719                             image->comps[0].data[i] = (((uc>>bit) & 1)?0:255);
1720                             --bit; ++i;
1721                         }
1722                     }
1723                 }
1724                 else
1725                     if((format == 7 && header_info.bw)) /*MONO*/
1726                     {
1727                         unsigned char uc;
1728
1729                         for(i = 0; i < w * h; ++i)
1730                         {
1731                             if ( !fread(&uc, 1, 1, fp) )
1732                                 fprintf(stderr, "\nError: fread return a number of element different from the expected.\n");
1733                             image->comps[0].data[i] = (uc & 1)?0:255;
1734                         }
1735                     }
1736     fclose(fp);
1737
1738     return image;
1739 }/* pnmtoimage() */
1740
1741 int imagetopnm(opj_image_t * image, const char *outfile, int force_split)
1742 {
1743     int *red, *green, *blue, *alpha;
1744     int wr, hr, max;
1745     int i;
1746     unsigned int compno, ncomp;
1747     int adjustR, adjustG, adjustB, adjustA;
1748     int fails, two, want_gray, has_alpha, triple;
1749     int prec, v;
1750     FILE *fdest = NULL;
1751     const char *tmp = outfile;
1752     char *destname;
1753
1754     alpha = NULL;
1755
1756     if((prec = (int)image->comps[0].prec) > 16)
1757     {
1758         fprintf(stderr,"%s:%d:imagetopnm\n\tprecision %d is larger than 16"
1759                 "\n\t: refused.\n",__FILE__,__LINE__,prec);
1760         return 1;
1761     }
1762     two = has_alpha = 0; fails = 1;
1763     ncomp = image->numcomps;
1764
1765     while (*tmp) ++tmp; tmp -= 2;
1766     want_gray = (*tmp == 'g' || *tmp == 'G');
1767     ncomp = image->numcomps;
1768
1769     if(want_gray) ncomp = 1;
1770
1771     if ((force_split == 0) &&
1772                                 (ncomp == 2 /* GRAYA */
1773             || (ncomp > 2 /* RGB, RGBA */
1774                 && image->comps[0].dx == image->comps[1].dx
1775                 && image->comps[1].dx == image->comps[2].dx
1776                 && image->comps[0].dy == image->comps[1].dy
1777                 && image->comps[1].dy == image->comps[2].dy
1778                 && image->comps[0].prec == image->comps[1].prec
1779                 && image->comps[1].prec == image->comps[2].prec
1780                 )))
1781                 {
1782         fdest = fopen(outfile, "wb");
1783
1784         if (!fdest)
1785         {
1786             fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
1787             return fails;
1788         }
1789         two = (prec > 8);
1790         triple = (ncomp > 2);
1791         wr = (int)image->comps[0].w; hr = (int)image->comps[0].h;
1792         max = (1<<prec) - 1; has_alpha = (ncomp == 4 || ncomp == 2);
1793
1794         red = image->comps[0].data;
1795
1796         if(triple)
1797         {
1798             green = image->comps[1].data;
1799             blue = image->comps[2].data;
1800         }
1801         else green = blue = NULL;
1802
1803         if(has_alpha)
1804         {
1805             const char *tt = (triple?"RGB_ALPHA":"GRAYSCALE_ALPHA");
1806
1807             fprintf(fdest, "P7\n# OpenJPEG-%s\nWIDTH %d\nHEIGHT %d\nDEPTH %u\n"
1808                     "MAXVAL %d\nTUPLTYPE %s\nENDHDR\n", opj_version(),
1809                     wr, hr, ncomp, max, tt);
1810             alpha = image->comps[ncomp - 1].data;
1811             adjustA = (image->comps[ncomp - 1].sgnd ?
1812                         1 << (image->comps[ncomp - 1].prec - 1) : 0);
1813         }
1814         else
1815         {
1816             fprintf(fdest, "P6\n# OpenJPEG-%s\n%d %d\n%d\n",
1817                     opj_version(), wr, hr, max);
1818             adjustA = 0;
1819         }
1820         adjustR = (image->comps[0].sgnd ? 1 << (image->comps[0].prec - 1) : 0);
1821
1822         if(triple)
1823         {
1824             adjustG = (image->comps[1].sgnd ? 1 << (image->comps[1].prec - 1) : 0);
1825             adjustB = (image->comps[2].sgnd ? 1 << (image->comps[2].prec - 1) : 0);
1826         }
1827         else adjustG = adjustB = 0;
1828
1829         for(i = 0; i < wr * hr; ++i)
1830         {
1831             if(two)
1832             {
1833                 v = *red + adjustR; ++red;
1834                 if(v > 65535) v = 65535; else if(v < 0) v = 0;
1835
1836                 /* netpbm: */
1837                 fprintf(fdest, "%c%c",(unsigned char)(v>>8), (unsigned char)v);
1838
1839                 if(triple)
1840                 {
1841                     v = *green + adjustG; ++green;
1842                     if(v > 65535) v = 65535; else if(v < 0) v = 0;
1843
1844                     /* netpbm: */
1845                     fprintf(fdest, "%c%c",(unsigned char)(v>>8), (unsigned char)v);
1846
1847                     v =  *blue + adjustB; ++blue;
1848                     if(v > 65535) v = 65535; else if(v < 0) v = 0;
1849
1850                     /* netpbm: */
1851                     fprintf(fdest, "%c%c",(unsigned char)(v>>8), (unsigned char)v);
1852
1853                 }/* if(triple) */
1854
1855                 if(has_alpha)
1856                 {
1857                     v = *alpha + adjustA; ++alpha;
1858                     if(v > 65535) v = 65535; else if(v < 0) v = 0;
1859
1860                     /* netpbm: */
1861                     fprintf(fdest, "%c%c",(unsigned char)(v>>8), (unsigned char)v);
1862                 }
1863                 continue;
1864
1865             }   /* if(two) */
1866
1867             /* prec <= 8: */
1868             v = *red++;
1869             if(v > 255) v = 255; else if(v < 0) v = 0;
1870
1871             fprintf(fdest, "%c", (unsigned char)v);
1872             if(triple)
1873             {
1874                 v = *green++;
1875                 if(v > 255) v = 255; else if(v < 0) v = 0;
1876
1877                 fprintf(fdest, "%c", (unsigned char)v);
1878                 v = *blue++;
1879                 if(v > 255) v = 255; else if(v < 0) v = 0;
1880
1881                 fprintf(fdest, "%c", (unsigned char)v);
1882                                                 }
1883             if(has_alpha)
1884             {
1885                 v = *alpha++;
1886                 if(v > 255) v = 255; else if(v < 0) v = 0;
1887
1888                 fprintf(fdest, "%c", (unsigned char)v);
1889             }
1890         }       /* for(i */
1891
1892         fclose(fdest); return 0;
1893     }
1894
1895     /* YUV or MONO: */
1896
1897     if (image->numcomps > ncomp)
1898     {
1899         fprintf(stderr,"WARNING -> [PGM file] Only the first component\n");
1900         fprintf(stderr,"           is written to the file\n");
1901     }
1902     destname = (char*)malloc(strlen(outfile) + 8);
1903     if(destname == NULL){
1904         fprintf(stderr, "imagetopnm: memory out\n");
1905         return 1;
1906     }
1907     for (compno = 0; compno < ncomp; compno++)
1908     {
1909         if (ncomp > 1)
1910         {
1911             /*sprintf(destname, "%d.%s", compno, outfile);*/
1912             const size_t olen = strlen(outfile);
1913             const size_t dotpos = olen - 4;
1914
1915             strncpy(destname, outfile, dotpos);
1916             sprintf(destname+dotpos, "_%u.pgm", compno);
1917         }
1918         else
1919             sprintf(destname, "%s", outfile);
1920
1921         fdest = fopen(destname, "wb");
1922         if (!fdest)
1923         {
1924             fprintf(stderr, "ERROR -> failed to open %s for writing\n", destname);
1925             free(destname);
1926             return 1;
1927         }
1928         wr = (int)image->comps[compno].w; hr = (int)image->comps[compno].h;
1929         prec = (int)image->comps[compno].prec;
1930         max = (1<<prec) - 1;
1931
1932         fprintf(fdest, "P5\n#OpenJPEG-%s\n%d %d\n%d\n",
1933                 opj_version(), wr, hr, max);
1934
1935         red = image->comps[compno].data;
1936         adjustR =
1937                 (image->comps[compno].sgnd ? 1 << (image->comps[compno].prec - 1) : 0);
1938
1939         if(prec > 8)
1940         {
1941             for (i = 0; i < wr * hr; i++)
1942             {
1943                 v = *red + adjustR; ++red;
1944                 if(v > 65535) v = 65535; else if(v < 0) v = 0;
1945
1946                 /* netpbm: */
1947                 fprintf(fdest, "%c%c",(unsigned char)(v>>8), (unsigned char)v);
1948
1949                 if(has_alpha)
1950                 {
1951                     v = *alpha++;
1952                     if(v > 65535) v = 65535; else if(v < 0) v = 0;
1953
1954                     /* netpbm: */
1955                     fprintf(fdest, "%c%c",(unsigned char)(v>>8), (unsigned char)v);
1956                 }
1957             }/* for(i */
1958         }
1959         else /* prec <= 8 */
1960         {
1961             for(i = 0; i < wr * hr; ++i)
1962             {
1963                 v = *red + adjustR; ++red;
1964                 if(v > 255) v = 255; else if(v < 0) v = 0;
1965
1966                 fprintf(fdest, "%c", (unsigned char)v);
1967             }
1968         }
1969         fclose(fdest);
1970     } /* for (compno */
1971     free(destname);
1972
1973     return 0;
1974 }/* imagetopnm() */
1975
1976 /* -->> -->> -->> -->>
1977
1978     RAW IMAGE FORMAT
1979
1980  <<-- <<-- <<-- <<-- */
1981 static opj_image_t* rawtoimage_common(const char *filename, opj_cparameters_t *parameters, raw_cparameters_t *raw_cp, OPJ_BOOL big_endian) {
1982     int subsampling_dx = parameters->subsampling_dx;
1983     int subsampling_dy = parameters->subsampling_dy;
1984
1985     FILE *f = NULL;
1986     int i, compno, numcomps, w, h;
1987     OPJ_COLOR_SPACE color_space;
1988     opj_image_cmptparm_t *cmptparm;
1989     opj_image_t * image = NULL;
1990     unsigned short ch;
1991
1992     if((! (raw_cp->rawWidth & raw_cp->rawHeight & raw_cp->rawComp & raw_cp->rawBitDepth)) == 0)
1993     {
1994         fprintf(stderr,"\nError: invalid raw image parameters\n");
1995         fprintf(stderr,"Please use the Format option -F:\n");
1996         fprintf(stderr,"-F <width>,<height>,<ncomp>,<bitdepth>,{s,u}@<dx1>x<dy1>:...:<dxn>x<dyn>\n");
1997         fprintf(stderr,"If subsampling is omitted, 1x1 is assumed for all components\n");
1998         fprintf(stderr,"Example: -i image.raw -o image.j2k -F 512,512,3,8,u@1x1:2x2:2x2\n");
1999         fprintf(stderr,"         for raw 512x512 image with 4:2:0 subsampling\n");
2000         fprintf(stderr,"Aborting.\n");
2001         return NULL;
2002     }
2003
2004     f = fopen(filename, "rb");
2005     if (!f) {
2006         fprintf(stderr, "Failed to open %s for reading !!\n", filename);
2007         fprintf(stderr,"Aborting\n");
2008         return NULL;
2009     }
2010     numcomps = raw_cp->rawComp;
2011
2012     /* FIXME ADE at this point, tcp_mct has not been properly set in calling function */
2013     if (numcomps == 1) {
2014         color_space = OPJ_CLRSPC_GRAY;
2015     } else if ((numcomps >= 3) && (parameters->tcp_mct == 0)) {
2016         color_space = OPJ_CLRSPC_SYCC;
2017     } else if ((numcomps >= 3) && (parameters->tcp_mct != 2)) {
2018         color_space = OPJ_CLRSPC_SRGB;
2019     } else {
2020         color_space = OPJ_CLRSPC_UNKNOWN;
2021     }
2022     w = raw_cp->rawWidth;
2023     h = raw_cp->rawHeight;
2024     cmptparm = (opj_image_cmptparm_t*) calloc((OPJ_UINT32)numcomps,sizeof(opj_image_cmptparm_t));
2025     if (!cmptparm) {
2026         fprintf(stderr, "Failed to allocate image components parameters !!\n");
2027         fprintf(stderr,"Aborting\n");
2028         fclose(f);
2029         return NULL;
2030     }
2031     /* initialize image components */
2032     for(i = 0; i < numcomps; i++) {
2033         cmptparm[i].prec = (OPJ_UINT32)raw_cp->rawBitDepth;
2034         cmptparm[i].bpp = (OPJ_UINT32)raw_cp->rawBitDepth;
2035         cmptparm[i].sgnd = (OPJ_UINT32)raw_cp->rawSigned;
2036         cmptparm[i].dx = (OPJ_UINT32)(subsampling_dx * raw_cp->rawComps[i].dx);
2037         cmptparm[i].dy = (OPJ_UINT32)(subsampling_dy * raw_cp->rawComps[i].dy);
2038         cmptparm[i].w = (OPJ_UINT32)w;
2039         cmptparm[i].h = (OPJ_UINT32)h;
2040     }
2041     /* create the image */
2042     image = opj_image_create((OPJ_UINT32)numcomps, &cmptparm[0], color_space);
2043     free(cmptparm);
2044     if(!image) {
2045         fclose(f);
2046         return NULL;
2047     }
2048     /* set image offset and reference grid */
2049     image->x0 = (OPJ_UINT32)parameters->image_offset_x0;
2050     image->y0 = (OPJ_UINT32)parameters->image_offset_y0;
2051     image->x1 = (OPJ_UINT32)parameters->image_offset_x0 + (OPJ_UINT32)(w - 1) * (OPJ_UINT32)subsampling_dx + 1;
2052     image->y1 = (OPJ_UINT32)parameters->image_offset_y0 + (OPJ_UINT32)(h - 1) * (OPJ_UINT32)subsampling_dy + 1;
2053
2054     if(raw_cp->rawBitDepth <= 8)
2055     {
2056         unsigned char value = 0;
2057         for(compno = 0; compno < numcomps; compno++) {
2058             int nloop = (w*h)/(raw_cp->rawComps[compno].dx*raw_cp->rawComps[compno].dy);
2059             for (i = 0; i < nloop; i++) {
2060                 if (!fread(&value, 1, 1, f)) {
2061                     fprintf(stderr,"Error reading raw file. End of file probably reached.\n");
2062                     opj_image_destroy(image);
2063                     fclose(f);
2064                     return NULL;
2065                 }
2066                 image->comps[compno].data[i] = raw_cp->rawSigned?(char)value:value;
2067             }
2068         }
2069     }
2070     else if(raw_cp->rawBitDepth <= 16)
2071     {
2072         unsigned short value;
2073         for(compno = 0; compno < numcomps; compno++) {
2074             int nloop = (w*h)/(raw_cp->rawComps[compno].dx*raw_cp->rawComps[compno].dy);
2075             for (i = 0; i < nloop; i++) {
2076                 unsigned char temp1;
2077                 unsigned char temp2;
2078                 if (!fread(&temp1, 1, 1, f)) {
2079                     fprintf(stderr,"Error reading raw file. End of file probably reached.\n");
2080                     opj_image_destroy(image);
2081                     fclose(f);
2082                     return NULL;
2083                 }
2084                 if (!fread(&temp2, 1, 1, f)) {
2085                     fprintf(stderr,"Error reading raw file. End of file probably reached.\n");
2086                     opj_image_destroy(image);
2087                     fclose(f);
2088                     return NULL;
2089                 }
2090                 if( big_endian )
2091                 {
2092                     value = (unsigned short)((temp1 << 8) + temp2);
2093                 }
2094                 else
2095                 {
2096                     value = (unsigned short)((temp2 << 8) + temp1);
2097                 }
2098                 image->comps[compno].data[i] = raw_cp->rawSigned?(short)value:value;
2099             }
2100         }
2101     }
2102     else {
2103         fprintf(stderr,"OpenJPEG cannot encode raw components with bit depth higher than 16 bits.\n");
2104         opj_image_destroy(image);
2105         fclose(f);
2106         return NULL;
2107     }
2108
2109     if (fread(&ch, 1, 1, f)) {
2110         fprintf(stderr,"Warning. End of raw file not reached... processing anyway\n");
2111     }
2112     fclose(f);
2113
2114     return image;
2115 }
2116
2117 opj_image_t* rawltoimage(const char *filename, opj_cparameters_t *parameters, raw_cparameters_t *raw_cp) {
2118     return rawtoimage_common(filename, parameters, raw_cp, OPJ_FALSE);
2119 }
2120
2121 opj_image_t* rawtoimage(const char *filename, opj_cparameters_t *parameters, raw_cparameters_t *raw_cp) {
2122     return rawtoimage_common(filename, parameters, raw_cp, OPJ_TRUE);
2123 }
2124
2125 static int imagetoraw_common(opj_image_t * image, const char *outfile, OPJ_BOOL big_endian)
2126 {
2127     FILE *rawFile = NULL;
2128     size_t res;
2129     unsigned int compno;
2130     int w, h, fails;
2131     int line, row, curr, mask;
2132     int *ptr;
2133     unsigned char uc;
2134     (void)big_endian;
2135
2136     if((image->numcomps * image->x1 * image->y1) == 0)
2137     {
2138         fprintf(stderr,"\nError: invalid raw image parameters\n");
2139         return 1;
2140     }
2141
2142     rawFile = fopen(outfile, "wb");
2143     if (!rawFile) {
2144         fprintf(stderr, "Failed to open %s for writing !!\n", outfile);
2145         return 1;
2146     }
2147
2148     fails = 1;
2149     fprintf(stdout,"Raw image characteristics: %d components\n", image->numcomps);
2150
2151     for(compno = 0; compno < image->numcomps; compno++)
2152     {
2153         fprintf(stdout,"Component %u characteristics: %dx%dx%d %s\n", compno, image->comps[compno].w,
2154                 image->comps[compno].h, image->comps[compno].prec, image->comps[compno].sgnd==1 ? "signed": "unsigned");
2155
2156         w = (int)image->comps[compno].w;
2157         h = (int)image->comps[compno].h;
2158
2159         if(image->comps[compno].prec <= 8)
2160         {
2161             if(image->comps[compno].sgnd == 1)
2162             {
2163                 mask = (1 << image->comps[compno].prec) - 1;
2164                 ptr = image->comps[compno].data;
2165                 for (line = 0; line < h; line++) {
2166                     for(row = 0; row < w; row++)        {
2167                         curr = *ptr;
2168                         if(curr > 127) curr = 127; else if(curr < -128) curr = -128;
2169                         uc = (unsigned char) (curr & mask);
2170                         res = fwrite(&uc, 1, 1, rawFile);
2171                         if( res < 1 ) {
2172                             fprintf(stderr, "failed to write 1 byte for %s\n", outfile);
2173                             goto fin;
2174                         }
2175                         ptr++;
2176                     }
2177                 }
2178             }
2179             else if(image->comps[compno].sgnd == 0)
2180             {
2181                 mask = (1 << image->comps[compno].prec) - 1;
2182                 ptr = image->comps[compno].data;
2183                 for (line = 0; line < h; line++) {
2184                     for(row = 0; row < w; row++)        {
2185                         curr = *ptr;
2186                         if(curr > 255) curr = 255; else if(curr < 0) curr = 0;
2187                         uc = (unsigned char) (curr & mask);
2188                         res = fwrite(&uc, 1, 1, rawFile);
2189                         if( res < 1 ) {
2190                             fprintf(stderr, "failed to write 1 byte for %s\n", outfile);
2191                             goto fin;
2192                         }
2193                         ptr++;
2194                     }
2195                 }
2196             }
2197         }
2198         else if(image->comps[compno].prec <= 16)
2199         {
2200             if(image->comps[compno].sgnd == 1)
2201             {
2202                 union { signed short val; signed char vals[2]; } uc16;
2203                 mask = (1 << image->comps[compno].prec) - 1;
2204                 ptr = image->comps[compno].data;
2205                 for (line = 0; line < h; line++) {
2206                     for(row = 0; row < w; row++)        {
2207                         curr = *ptr;
2208                         if(curr > 32767 ) curr = 32767; else if( curr < -32768) curr = -32768;
2209                         uc16.val = (signed short)(curr & mask);
2210                         res = fwrite(uc16.vals, 1, 2, rawFile);
2211                         if( res < 2 ) {
2212                             fprintf(stderr, "failed to write 2 byte for %s\n", outfile);
2213                             goto fin;
2214                         }
2215                         ptr++;
2216                     }
2217                 }
2218             }
2219             else if(image->comps[compno].sgnd == 0)
2220             {
2221                 union { unsigned short val; unsigned char vals[2]; } uc16;
2222                 mask = (1 << image->comps[compno].prec) - 1;
2223                 ptr = image->comps[compno].data;
2224                 for (line = 0; line < h; line++) {
2225                     for(row = 0; row < w; row++)        {
2226                         curr = *ptr;
2227                         if(curr > 65535 ) curr = 65535; else if( curr < 0) curr = 0;
2228                         uc16.val = (unsigned short)(curr & mask);
2229                         res = fwrite(uc16.vals, 1, 2, rawFile);
2230                         if( res < 2 ) {
2231                             fprintf(stderr, "failed to write 2 byte for %s\n", outfile);
2232                             goto fin;
2233                         }
2234                         ptr++;
2235                     }
2236                 }
2237             }
2238         }
2239         else if (image->comps[compno].prec <= 32)
2240         {
2241             fprintf(stderr,"More than 16 bits per component no handled yet\n");
2242             goto fin;
2243         }
2244         else
2245         {
2246             fprintf(stderr,"Error: invalid precision: %d\n", image->comps[compno].prec);
2247             goto fin;
2248         }
2249     }
2250   fails = 0;
2251 fin:
2252     fclose(rawFile);
2253     return fails;
2254 }
2255
2256 int imagetoraw(opj_image_t * image, const char *outfile)
2257 {
2258     return imagetoraw_common(image, outfile, OPJ_TRUE);
2259 }
2260
2261 int imagetorawl(opj_image_t * image, const char *outfile)
2262 {
2263     return imagetoraw_common(image, outfile, OPJ_FALSE);
2264 }
2265