]> Creatis software - gdcm.git/blob - src/gdcmopenjpeg/codec/image_to_j2k.c
To avoid C / C++ style warnings
[gdcm.git] / src / gdcmopenjpeg / codec / image_to_j2k.c
1 /*
2  * Copyright (c) 2001-2003, David Janssens
3  * Copyright (c) 2002-2003, Yannick Verschueren
4  * Copyright (c) 2002-2003,  Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  * POSSIBILITY OF SUCH DAMAGE.
27  */
28
29
30
31 /* MEMORY LEAK */
32
33 #ifdef _DEBUG
34
35 #define _CRTDBG_MAP_ALLOC
36
37 #include <stdlib.h>  /* Must be included first */
38
39 #include <crtdbg.h>
40
41 #endif
42
43 /* MEM */
44
45 #include <openjpeg.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <math.h>
49 #include <string.h>
50 #ifndef DONT_HAVE_GETOPT
51 #include <getopt.h>
52 #else
53 #include "compat/getopt.h"
54 #endif
55 #include "convert.h"
56
57 void help_display()
58 {
59   fprintf(stdout,"HELP\n----\n\n");
60   fprintf(stdout,"- the -h option displays this help information on screen\n\n");
61
62
63   fprintf(stdout,"List of parameters for the coder JPEG 2000:\n");
64   fprintf(stdout,"\n");
65   fprintf(stdout,"REMARKS:\n");
66   fprintf(stdout,"---------\n");
67   fprintf(stdout,"\n");
68   fprintf
69     (stdout,"The markers written to the main_header are : SOC SIZ COD QCD COM.\n");
70   fprintf
71     (stdout,"COD and QCD never appear in the tile_header.\n");
72   fprintf(stdout,"\n");
73   fprintf
74     (stdout,"- This coder can encode a mega image, a test was made on a 24000x24000 pixels \n");
75   fprintf
76     (stdout,"color image.  You need enough disk space memory (twice the original) to encode \n");
77   fprintf
78     (stdout,"the image,i.e. for a 1.5 GB image you need a minimum of 3GB of disk memory)\n");
79   fprintf(stdout,"\n");
80   fprintf(stdout,"By default:\n");
81   fprintf(stdout,"------------\n");
82   fprintf(stdout,"\n");
83   fprintf(stdout," * Lossless\n");
84   fprintf(stdout," * 1 tile\n");
85   fprintf(stdout," * Size of precinct : 2^15 x 2^15 (means 1 precinct)\n");
86   fprintf(stdout," * Size of code-block : 64 x 64\n");
87   fprintf(stdout," * Number of resolutions: 6\n");
88   fprintf(stdout," * No SOP marker in the codestream\n");
89   fprintf(stdout," * No EPH marker in the codestream\n");
90   fprintf(stdout," * No sub-sampling in x or y direction\n");
91   fprintf(stdout," * No mode switch activated\n");
92   fprintf(stdout," * Progression order: LRCP\n");
93   fprintf(stdout," * No index file\n");
94   fprintf(stdout," * No ROI upshifted\n");
95   fprintf(stdout," * No offset of the origin of the image\n");
96   fprintf(stdout," * No offset of the origin of the tiles\n");
97   fprintf(stdout," * Reversible DWT 5-3\n");
98   fprintf(stdout,"\n");
99   fprintf(stdout,"Parameters:\n");
100   fprintf(stdout,"------------\n");
101   fprintf(stdout,"\n");
102   fprintf
103     (stdout,"Required Parameters (except with -h):\n");
104   fprintf(stdout,"\n");
105   fprintf
106     (stdout,"-i           : source file  (-i source.pnm also *.pgm, *.ppm) \n");
107   fprintf(stdout,"\n");
108   fprintf
109     (stdout,"-o           : destination file (-o dest.j2k or .jp2) \n");
110   fprintf(stdout,"\n");
111   fprintf
112     (stdout,"Optional Parameters:\n");
113   fprintf(stdout,"\n");
114   fprintf(stdout,"-h           : display the help information \n ");
115   fprintf(stdout,"\n");
116   fprintf(stdout,"-r           : different compression ratios for successive layers (-r 20,10,5)\n ");
117   fprintf(stdout,"            - The rate specified for each quality level is the desired \n");
118   fprintf(stdout,"              compression factor.\n");
119   fprintf(stdout,"         Example: -r 20,10,1 means quality 1: compress 20x, \n");
120   fprintf(stdout,"           quality 2: compress 10x and quality 3: compress lossless\n");
121   fprintf(stdout,"\n");
122   fprintf(stdout,"               (options -r and -q cannot be used together)\n ");
123   fprintf(stdout,"\n");
124
125   fprintf(stdout,"-q           : different psnr for successive layers (-q 30,40,50) \n ");
126
127   fprintf(stdout,"               (options -r and -q cannot be used together)\n ");
128
129   fprintf(stdout,"\n");
130   fprintf(stdout,"-n           : number of resolutions (-n 3) \n");
131   fprintf(stdout,"\n");
132   fprintf(stdout,"-b           : size of code block (-b 32,32) \n");
133   fprintf(stdout,"\n");
134   fprintf(stdout,"-c           : size of precinct (-c 128,128) \n");
135   fprintf(stdout,"\n");
136   fprintf(stdout,"-t           : size of tile (-t 512,512) \n");
137   fprintf(stdout,"\n");
138   fprintf
139     (stdout,"-p           : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] \n");
140   fprintf(stdout,"\n");
141   fprintf
142     (stdout,"-s           : subsampling factor (-s 2,2) [-s X,Y] \n");
143   fprintf(stdout,"        Remark: subsampling bigger than 2 can produce error\n");
144   fprintf(stdout,"\n");
145   fprintf
146     (stdout,"-SOP         : write SOP marker before each packet \n");
147   fprintf(stdout,"\n");
148   fprintf
149     (stdout,"-EPH         : write EPH marker after each header packet \n");
150   fprintf(stdout,"\n");
151   fprintf
152     (stdout,"-M           : mode switch (-M 3) [1=BYPASS(LAZY) 2=RESET 4=RESTART(TERMALL)\n");
153   fprintf
154     (stdout,"                 8=VSC 16=ERTERM(SEGTERM) 32=SEGMARK(SEGSYM)] \n");
155   fprintf
156     (stdout,"                 Indicate multiple modes by adding their values. \n");
157   fprintf
158     (stdout,"                 ex: RESTART(4) + RESET(2) + SEGMARK(32) = -M 38\n");
159   fprintf(stdout,"\n");
160   fprintf
161     (stdout,"-x           : create an index file *.Idx (-x index_name.Idx) \n");
162   fprintf(stdout,"\n");
163   fprintf
164     (stdout,"-ROI         : c=%%d,U=%%d : quantization indices upshifted \n");
165   fprintf
166     (stdout,"               for component c=%%d [%%d = 0,1,2]\n");
167   fprintf
168     (stdout,"               with a value of U=%%d [0 <= %%d <= 37] (i.e. -ROI:c=0,U=25) \n");
169   fprintf(stdout,"\n");
170   fprintf
171     (stdout,"-d           : offset of the origin of the image (-d 150,300) \n");
172   fprintf(stdout,"\n");
173   fprintf
174     (stdout,"-T           : offset of the origin of the tiles (-T 100,75) \n");
175   fprintf(stdout,"\n");
176   fprintf(stdout,"-I           : use the irreversible DWT 9-7 (-I) \n");
177   fprintf(stdout,"\n");
178   fprintf(stdout,"IMPORTANT:\n");
179   fprintf(stdout,"-----------\n");
180   fprintf(stdout,"\n");
181   fprintf(stdout,"The index file has the structure below:\n");
182   fprintf(stdout,"---------------------------------------\n");
183   fprintf(stdout,"\n");
184   fprintf(stdout,"Image_height Image_width\n");
185   fprintf(stdout,"progression order\n");
186   fprintf(stdout,"Tiles_size_X Tiles_size_Y\n");
187   fprintf(stdout,"Components_nb\n");
188   fprintf(stdout,"Layers_nb\n");
189   fprintf(stdout,"decomposition_levels\n");
190   fprintf(stdout,"[Precincts_size_X_res_Nr Precincts_size_Y_res_Nr]...\n");
191   fprintf(stdout,"   [Precincts_size_X_res_0 Precincts_size_Y_res_0]\n");
192   fprintf(stdout,"Main_header_end_position\n");
193   fprintf(stdout,"Codestream_size\n");
194   fprintf(stdout,"Tile_0 start_pos end_Theader end_pos TotalDisto NumPix MaxMSE\n");
195   fprintf(stdout,"Tile_1   ''           ''        ''        ''       ''    ''\n");
196   fprintf(stdout,"...\n");
197   fprintf(stdout,"Tile_Nt   ''           ''        ''        ''       ''    ''\n");
198   fprintf(stdout,"Tpacket_0 Tile layer res. comp. prec. start_pos end_pos disto\n");
199   fprintf(stdout,"...\n");
200   fprintf(stdout,"Tpacket_Np ''   ''    ''   ''    ''       ''       ''     ''\n");
201
202   fprintf(stdout,"MaxDisto\n");
203
204   fprintf(stdout,"TotalDisto\n\n");
205 }
206
207 int give_progression(char progression[4])
208 {
209   if (progression[0] == 'L' && progression[1] == 'R'
210       && progression[2] == 'C' && progression[3] == 'P') {
211     return 0;
212   } else {
213     if (progression[0] == 'R' && progression[1] == 'L'
214    && progression[2] == 'C' && progression[3] == 'P') {
215       return 1;
216     } else {
217       if (progression[0] == 'R' && progression[1] == 'P'
218      && progression[2] == 'C' && progression[3] == 'L') {
219    return 2;
220       } else {
221    if (progression[0] == 'P' && progression[1] == 'C'
222        && progression[2] == 'R' && progression[3] == 'L') {
223      return 3;
224    } else {
225      if (progression[0] == 'C' && progression[1] == 'P'
226          && progression[2] == 'R' && progression[3] == 'L') {
227        return 4;
228      } else {
229        return -1;
230      }
231    }
232       }
233     }
234   }
235 }
236
237 double dwt_norms_97[4][10] = {
238   {1.000, 1.965, 4.177, 8.403, 16.90, 33.84, 67.69, 135.3, 270.6, 540.9},
239   {2.022, 3.989, 8.355, 17.04, 34.27, 68.63, 137.3, 274.6, 549.0},
240   {2.022, 3.989, 8.355, 17.04, 34.27, 68.63, 137.3, 274.6, 549.0},
241   {2.080, 3.865, 8.307, 17.18, 34.71, 69.59, 139.3, 278.6, 557.2}
242 };
243
244 int floorlog2(int a)
245 {
246   int l;
247   for (l = 0; a > 1; l++) {
248     a >>= 1;
249   }
250   return l;
251 }
252
253 void encode_stepsize(float stepsize, int numbps, int *expn, int *mant)
254 {
255   int p, n, stepsizeTMP;
256   stepsizeTMP=(int) floor(stepsize * 8192.0);
257   p = floorlog2(stepsizeTMP) - 13;
258   n = 11 - floorlog2(stepsizeTMP);
259   *mant = (n < 0 ? stepsizeTMP >> -n : stepsizeTMP << n) & 0x7ff;
260   *expn = numbps - p;
261 }
262
263 void calc_explicit_stepsizes(j2k_tccp_t * tccp, int prec)
264 {
265   int numbands, bandno;
266   numbands = 3 * tccp->numresolutions - 2;
267   for (bandno = 0; bandno < numbands; bandno++) {
268     float stepsize;
269
270     int resno, level, orient, gain;
271     resno = bandno == 0 ? 0 : (bandno - 1) / 3 + 1;
272     orient = bandno == 0 ? 0 : (bandno - 1) % 3 + 1;
273     level = tccp->numresolutions - 1 - resno;
274     gain =
275       tccp->qmfbid == 0 ? 0 : (orient ==
276                 0 ? 0 : (orient == 1
277                || orient == 2 ? 1 : 2));
278     if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
279       stepsize = 1.0;
280     } else {
281       double norm = dwt_norms_97[orient][level];
282       stepsize = (1 << (gain + 1)) / norm;
283     }
284     encode_stepsize(stepsize, prec + gain,
285           &tccp->stepsizes[bandno].expn,
286           &tccp->stepsizes[bandno].mant);
287   }
288 }
289
290 int main(int argc, char **argv)
291 {
292   int len;
293   int NumResolution, numD_min;   /*   NumResolution : number of resolution                     */
294   int Tile_arg;         /*   Tile_arg = 0 (not in argument) ou = 1 (in argument)      */
295   int CSty;         /*   CSty : coding style                                      */
296   int Prog_order;      /*   progression order (default LRCP)                         */
297   char progression[4];
298   int numpocs, numpocs_tile;   /*   Number of progression order change (POC) default 0       */
299   int prcw_init[J2K_MAXRLVLS];   /*   Initialisation Precinct width                            */
300   int prch_init[J2K_MAXRLVLS];   /*   Initialisation Precinct height                           */
301   /*int prcw_init, prch_init;*/                  /*   Initialisation precincts' size                           */
302   int cblockw_init, cblockh_init;   /*   Initialisation codeblocks' size                          */
303   int mode, value;      /*   Mode switch (cblk_style)                                 */
304   int subsampling_dx, subsampling_dy;   /* subsampling value for dx and dy                    */
305   int ROI_compno, ROI_shift;   /*   region of interrest                                      */
306   int Dim[2];         /*   portion of the image coded                               */
307   int TX0, TY0;         /*   tile off-set                                             */
308   j2k_image_t img;
309   j2k_cp_t cp, cp_init;      /*   cp_init is used to initialise in multiple tiles          */
310   j2k_tcp_t *tcp, *tcp_init;   /*   tcp_init is used to initialise in multiple tile          */
311   j2k_poc_t POC[32];      /*   POC : used in case of Progression order change           */
312   j2k_poc_t *tcp_poc;
313   j2k_tccp_t *tccp;
314   int i, tileno, j;
315   char *infile = 0;
316   char *outfile = 0;
317   char *index = 0;
318   char *s, S1, S2, S3;
319   int ir = 0;
320   int res_spec = 0;      /*   For various precinct sizes specification                 */
321   char sep;
322   char *j2k_codestream;
323   char *jp2_codestream;
324   FILE *f;
325   int depth_0, sign, depth;
326
327
328   /* default value */
329   /* ------------- */
330   NumResolution = 6;
331   CSty = 0;
332   cblockw_init = 64;
333   cblockh_init = 64;
334   cp.tw = 1;
335   cp.th = 1;
336   cp.index_on = 0;
337   Prog_order = 0;
338   numpocs = 0;
339   mode = 0;
340   subsampling_dx = 1;
341   subsampling_dy = 1;
342   ROI_compno = -1;      /* no ROI */
343   ROI_shift = 0;
344   Dim[0] = 0;
345   Dim[1] = 0;
346   TX0 = 0;
347   TY0 = 0;
348   cp.comment = "Created by OpenJPEG version 0.9";
349   cp.disto_alloc = 0;
350   cp.fixed_alloc = 0;
351   cp.fixed_quality = 0;      /*add fixed_quality*/
352   /* img.PPT=0; */
353
354   Tile_arg = 0;
355   cp_init.tcps = (j2k_tcp_t *) malloc(sizeof(j2k_tcp_t));   /* initialisation if only one tile */
356   tcp_init = &cp_init.tcps[0];
357   tcp_init->numlayers = 0;
358
359   cp.intermed_file = 1;
360
361   while (1) {
362     int c = getopt(argc, argv,
363          "i:o:r:q:f:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I");
364     if (c == -1)
365       break;
366     switch (c) {
367     case 'i':         /* IN fill */
368       infile = optarg;
369       s = optarg;
370       while (*s) {
371    s++;
372       }
373       s--;
374       S3 = *s;
375       s--;
376       S2 = *s;
377       s--;
378       S1 = *s;
379
380       if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
381      || (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
382    cp.decod_format = PGX_DFMT;
383    break;
384       }
385
386       if ((S1 == 'p' && S2 == 'n' && S3 == 'm')
387      || (S1 == 'P' && S2 == 'N' && S3 == 'M')
388      || (S1 == 'p' && S2 == 'g' && S3 == 'm') || (S1 == 'P'
389                          && S2 == 'G'
390                          && S3 == 'M')
391      || (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
392                          && S2 == 'p'
393                          && S3 == 'm')) {
394    cp.decod_format = PXM_DFMT;
395    break;
396       }
397
398       if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
399      || (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
400    cp.decod_format = BMP_DFMT;
401    break;
402       }
403       fprintf(stderr,
404          "!! Unrecognized format for infile : %c%c%c [accept only *.pnm, *.pgm, *.ppm, *.pgx or *.bmp] !!\n\n",
405          S1, S2, S3);
406       return 1;
407       break;
408       /* ----------------------------------------------------- */
409     case 'o':         /* OUT fill */
410       outfile = optarg;
411       while (*outfile) {
412    outfile++;
413       }
414       outfile--;
415       S3 = *outfile;
416       outfile--;
417       S2 = *outfile;
418       outfile--;
419       S1 = *outfile;
420
421       outfile = optarg;
422
423       if ((S1 == 'j' && S2 == '2' && S3 == 'k')
424      || (S1 == 'J' && S2 == '2' && S3 == 'K'))
425    cp.cod_format = J2K_CFMT;
426       else if ((S1 == 'j' && S2 == 'p' && S3 == '2')
427           || (S1 == 'J' && S2 == 'P' && S3 == '2'))
428    cp.cod_format = JP2_CFMT;
429       else {
430    fprintf(stderr,
431       "Unknown output format image *.%c%c%c [only *.j2k, *.jp2]!! \n",
432       S1, S2, S3);
433    return 1;
434       }
435
436
437
438       break;
439       /* ----------------------------------------------------- */
440     case 'r':         /* rates rates/distorsion */
441       s = optarg;
442       while (sscanf(s, "%d", &tcp_init->rates[tcp_init->numlayers]) == 1) {
443    tcp_init->numlayers++;
444    while (*s && *s != ',') {
445      s++;
446    }
447    if (!*s)
448      break;
449    s++;
450       }
451       cp.disto_alloc = 1;
452       cp.matrice = NULL;
453       break;
454       /* ----------------------------------------------------- */
455     case 'q':         /* add fixed_quality */
456       s = optarg;
457       while (sscanf(s, "%f", &tcp_init->distoratio[tcp_init->numlayers])
458         == 1) {
459    tcp_init->numlayers++;
460    while (*s && *s != ',') {
461      s++;
462    }
463    if (!*s)
464      break;
465    s++;
466       }
467       cp.fixed_quality = 1;
468       cp.matrice = NULL;
469       break;
470       /* dda */
471       /* ----------------------------------------------------- */
472     case 'f':         /* mod fixed_quality (before : -q) */
473       s = optarg;
474       sscanf(s, "%d", &tcp_init->numlayers);
475       s++;
476       if (tcp_init->numlayers > 9)
477    s++;
478       cp.matrice =
479    (int *) malloc(tcp_init->numlayers * NumResolution * 3 *
480              sizeof(int));
481       s = s + 2;
482       for (i = 0; i < tcp_init->numlayers; i++) {
483    tcp_init->rates[i] = 1;
484    sscanf(s, "%d,", &cp.matrice[i * NumResolution * 3]);
485    s += 2;
486    if (cp.matrice[i * NumResolution * 3] > 9)
487      s++;
488    cp.matrice[i * NumResolution * 3 + 1] = 0;
489    cp.matrice[i * NumResolution * 3 + 2] = 0;
490    for (j = 1; j < NumResolution; j++) {
491      sscanf(s, "%d,%d,%d",
492        &cp.matrice[i * NumResolution * 3 + j * 3 + 0],
493        &cp.matrice[i * NumResolution * 3 + j * 3 + 1],
494        &cp.matrice[i * NumResolution * 3 + j * 3 + 2]);
495      s += 6;
496      if (cp.matrice[i * NumResolution * 3 + j * 3] > 9)
497        s++;
498      if (cp.matrice[i * NumResolution * 3 + j * 3 + 1] > 9)
499        s++;
500      if (cp.matrice[i * NumResolution * 3 + j * 3 + 2] > 9)
501        s++;
502    }
503    if (i < tcp_init->numlayers - 1)
504      s++;
505       }
506       cp.fixed_alloc = 1;
507       break;
508       /* ----------------------------------------------------- */
509     case 't':         /* tiles */
510       sscanf(optarg, "%d,%d", &cp.tdx, &cp.tdy);
511       Tile_arg = 1;
512       break;
513       /* ----------------------------------------------------- */
514     case 'n':         /* resolution */
515       sscanf(optarg, "%d", &NumResolution);
516       break;
517       /* ----------------------------------------------------- */
518     case 'c':         /* precinct dimension */
519       s = optarg;
520       do {
521    sep = 0;
522    sscanf(s, "[%d,%d]%c", &prcw_init[res_spec],
523           &prch_init[res_spec], &sep);
524    CSty |= 0x01;
525    res_spec++;
526    s = strpbrk(s, "]") + 2;
527       }
528       while (sep == ',');
529       break;
530       /* ----------------------------------------------------- */
531     case 'b':         /* code-block dimension */
532       sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
533       if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
534      || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
535    fprintf(stderr,
536       "!! Size of code_block error (option -b) !!\n\nRestriction :\n    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
537    return 1;
538       }
539       break;
540       /* ----------------------------------------------------- */
541     case 'x':         /* creation of index file */
542       index = optarg;
543       cp.index_on = 1;
544       break;
545       /* ----------------------------------------------------- */
546     case 'p':         /* progression order */
547       s = optarg;
548       for (i = 0; i < 4; i++) {
549    progression[i] = *s;
550    s++;
551       }
552       Prog_order = give_progression(progression);
553
554       if (Prog_order == -1) {
555    fprintf(stderr,
556       "Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
557    return 1;
558       }
559       break;
560       /* ----------------------------------------------------- */
561     case 's':         /* subsampling factor */
562       if (sscanf(optarg, "%d,%d", &subsampling_dx, &subsampling_dy) != 2) {
563    fprintf(stderr,
564       "'-s' sub-sampling argument error !  [-s dx,dy]\n");
565    return 1;
566       }
567       break;
568       /* ----------------------------------------------------- */
569     case 'd':         /* coordonnate of the reference grid */
570       if (sscanf(optarg, "%d,%d", &Dim[0], &Dim[1]) != 2) {
571    fprintf(stderr,
572       "-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
573    return 1;
574       }
575       break;
576       /* ----------------------------------------------------- */
577     case 'h':         /* Display an help description */
578       help_display();
579       return 0;
580       break;
581       /* ----------------------------------------------------- */
582     case 'P':         /* POC */
583       fprintf(stderr, "/----------------------------------\\\n");
584       fprintf(stderr, "|  POC option not fully tested !!  |\n");
585       fprintf(stderr, "\\----------------------------------/\n");
586
587       s = optarg;
588       while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
589           &POC[numpocs].resno0, &POC[numpocs].compno0,
590           &POC[numpocs].layno1, &POC[numpocs].resno1,
591           &POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
592    POC[numpocs].prg = give_progression(POC[numpocs].progorder);
593    /* POC[numpocs].tile; */
594    numpocs++;
595    while (*s && *s != '/') {
596      s++;
597    }
598    if (!*s)
599      break;
600    s++;
601       }
602       break;
603       /* ------------------------------------------------------ */
604     case 'S':         /* SOP marker */
605       CSty |= 0x02;
606       break;
607       /* ------------------------------------------------------ */
608     case 'E':         /* EPH marker */
609       CSty |= 0x04;
610       break;
611       /* ------------------------------------------------------ */
612     case 'M':         /* Mode switch pas tous au point !! */
613       if (sscanf(optarg, "%d", &value) == 1) {
614    for (i = 0; i <= 5; i++) {
615      int cache = value & (1 << i);
616      if (cache)
617        mode |= (1 << i);
618    }
619       }
620       break;
621       /* ------------------------------------------------------ */
622     case 'R':         /* ROI */
623       if (sscanf(optarg, "OI:c=%d,U=%d", &ROI_compno, &ROI_shift) != 2) {
624    fprintf(stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
625    return 1;
626       }
627       break;
628       /* ------------------------------------------------------ */
629     case 'T':         /* Tile offset */
630       if (sscanf(optarg, "%d,%d", &TX0, &TY0) != 2) {
631    fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
632    return 1;
633       }
634       break;
635       /* ------------------------------------------------------ */
636     case 'C':         /* Add a comment */
637       cp.comment = optarg;
638       break;
639       /* ------------------------------------------------------ */
640     case 'I':         /* reversible or not */
641       ir = 1;
642       break;
643       /* ------------------------------------------------------ */
644     default:
645       return 1;
646     }
647   }
648
649   cp.tx0 = TX0;
650   cp.ty0 = TY0;
651
652   /* Error messages */
653   /* -------------- */
654   if (!infile || !outfile) {
655     fprintf(stderr,
656        "usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
657     return 1;
658   }
659
660   if ((cp.disto_alloc || cp.fixed_alloc || cp.fixed_quality)
661       && (!(cp.disto_alloc ^ cp.fixed_alloc ^ cp.fixed_quality))) {
662     fprintf(stderr,
663        "Error: options -r -q and -f cannot be used together !!\n");
664     return 1;
665   }            /* mod fixed_quality*/
666
667   /* if no rate entered, lossless by default */
668   if (tcp_init->numlayers == 0) {
669     tcp_init->rates[0] = 0;   /*MOD antonin : losslessbug*/
670     tcp_init->numlayers++;
671     cp.disto_alloc = 1;
672   }
673
674   if (TX0 > Dim[0] || TY0 > Dim[1]) {
675     fprintf(stderr,
676        "Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
677        TX0, Dim[0], TY0, Dim[1]);
678     return 1;
679   }
680
681   for (i = 0; i < numpocs; i++) {
682     if (POC[i].prg == -1) {
683       fprintf(stderr,
684          "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
685          i + 1);
686     }
687   }
688
689   switch (cp.decod_format) {
690   case PGX_DFMT:
691     if (Tile_arg) {
692       if (!pgxtoimage
693      (infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim, cp))
694       {
695    fprintf(stderr, "not a pgx file\n");
696    return 1;
697       }
698     } else {
699       if (!pgxtoimage
700      (infile, &img, -1, subsampling_dx, subsampling_dy, Dim, cp)) {
701    fprintf(stderr, " not a pgx file\n");
702    return 1;
703       }
704     }
705     break;
706
707   case PXM_DFMT:
708     if (!pnmtoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
709       fprintf(stderr, " not a pnm file\n");
710       return 1;
711     }
712     break;
713
714   case BMP_DFMT:
715     if (!bmptoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
716       fprintf(stderr, " not a bmp file\n");
717       return 1;
718     }
719     break;
720   }
721   /* to respect profile - 0 */
722   /* ---------------------- */
723   numD_min = 0;
724   /*   while (int_ceildiv(img.x1,(1<<numD_min))-int_ceildiv(img.x0,(1<<numD_min))>120 || int_ceildiv(img.y1,(1<<numD_min))-int_ceildiv(img.y0,(1<<numD_min))>160) numD_min++;
725      if ((numD_min+1)>NumResolution)
726      {
727      fprintf(stderr,"\n********************************************************************************\n\n");
728      fprintf(stderr,  "In view to respect Profile-0, the number of resolution used is %d in place of %d\n\n",numD_min+1,NumResolution);
729      fprintf(stderr,  "********************************************************************************\n\n");
730      NumResolution=numD_min+1;
731      } */
732
733   if (Tile_arg == 1) {
734     cp.tw = int_ceildiv(img.x1 - cp.tx0, cp.tdx);
735     cp.th = int_ceildiv(img.y1 - cp.ty0, cp.tdy);
736   } else {
737     cp.tdx = img.x1 - cp.tx0;
738     cp.tdy = img.y1 - cp.ty0;
739   }
740
741   /* Initialization for PPM marker */
742   cp.ppm = 0;
743   cp.ppm_data = NULL;
744   cp.ppm_data_first = NULL;
745   cp.ppm_previous = 0;
746   cp.ppm_store = 0;
747
748   /* Init the mutiple tiles */
749   /* ---------------------- */
750   cp.tcps = (j2k_tcp_t *) malloc(cp.tw * cp.th * sizeof(j2k_tcp_t));
751
752   for (tileno = 0; tileno < cp.tw * cp.th; tileno++) {
753     tcp = &cp.tcps[tileno];
754     tcp->numlayers = tcp_init->numlayers;
755     for (j = 0; j < tcp->numlayers; j++) {
756       if (cp.fixed_quality)   /* add fixed_quality*/
757    tcp->distoratio[j] = tcp_init->distoratio[j];
758       else
759    tcp->rates[j] = tcp_init->rates[j];
760     }
761     tcp->csty = CSty;
762     tcp->prg = Prog_order;
763     tcp->mct = img.numcomps == 3 ? 1 : 0;
764     tcp->ppt = 0;
765     tcp->ppt_data = NULL;
766     tcp->ppt_data_first = NULL;
767     tcp->ppt_store = 0;
768
769     numpocs_tile = 0;
770     tcp->POC = 0;
771     if (numpocs) {
772       /* intialisation of POC */
773       tcp->POC = 1;
774       for (i = 0; i < numpocs; i++) {
775    if (tileno == POC[i].tile - 1 || POC[i].tile == -1) {
776      tcp_poc = &tcp->pocs[numpocs_tile];
777      tcp_poc->resno0 = POC[numpocs_tile].resno0;
778      tcp_poc->compno0 = POC[numpocs_tile].compno0;
779      tcp_poc->layno1 = POC[numpocs_tile].layno1;
780      tcp_poc->resno1 = POC[numpocs_tile].resno1;
781      tcp_poc->compno1 = POC[numpocs_tile].compno1;
782      tcp_poc->prg = POC[numpocs_tile].prg;
783      tcp_poc->tile = POC[numpocs_tile].tile;
784      numpocs_tile++;
785    }
786       }
787     }
788     tcp->numpocs = numpocs_tile;
789     tcp->tccps = (j2k_tccp_t *) malloc(img.numcomps * sizeof(j2k_tccp_t));
790
791     for (i = 0; i < img.numcomps; i++) {
792       tccp = &tcp->tccps[i];
793       tccp->csty = CSty & 0x01;   /* 0 => one precinct || 1 => custom precinct  */
794       tccp->numresolutions = NumResolution;
795       tccp->cblkw = int_floorlog2(cblockw_init);
796       tccp->cblkh = int_floorlog2(cblockh_init);
797       tccp->cblksty = mode;
798       tccp->qmfbid = ir ? 0 : 1;
799       tccp->qntsty = ir ? J2K_CCP_QNTSTY_SEQNT : J2K_CCP_QNTSTY_NOQNT;
800       tccp->numgbits = 2;
801       if (i == ROI_compno)
802    tccp->roishift = ROI_shift;
803       else
804    tccp->roishift = 0;
805       if (CSty & J2K_CCP_CSTY_PRT) {
806    int p = 0;
807    for (j = tccp->numresolutions - 1; j >= 0; j--) {
808      if (p < res_spec) {
809        if (prcw_init[p] < 1)
810          tccp->prcw[j] = 1;
811        else
812          tccp->prcw[j] = int_floorlog2(prcw_init[p]);
813
814        if (prch_init[p] < 1)
815          tccp->prch[j] = 1;
816        else
817          tccp->prch[j] = int_floorlog2(prch_init[p]);
818      } else {
819        int size_prcw, size_prch;
820        size_prcw = prcw_init[res_spec - 1] >> (p - (res_spec - 1));
821        size_prch = prch_init[res_spec - 1] >> (p - (res_spec - 1));
822        if (size_prcw < 1)
823          tccp->prcw[j] = 1;
824        else
825          tccp->prcw[j] = int_floorlog2(size_prcw);
826        if (size_prch < 1)
827          tccp->prch[j] = 1;
828        else
829          tccp->prch[j] = int_floorlog2(size_prch);
830      }
831      p++;
832      /*printf("\nsize precinct pour level %d : %d,%d\n", j,
833         tccp->prcw[j], tccp->prch[j]); */
834    }
835       } else {
836    for (j = 0; j < tccp->numresolutions; j++) {
837      tccp->prcw[j] = 15;
838      tccp->prch[j] = 15;
839    }
840       }
841       calc_explicit_stepsizes(tccp, img.comps[i].prec);
842     }
843   }
844
845
846
847   if (cp.cod_format == J2K_CFMT) {   /* J2K format output */
848     if (cp.intermed_file == 1) {   /* After the encoding of each tile, j2k_encode 
849                   stores the data in the file */
850       len = j2k_encode(&img, &cp, outfile, cp.tdx * cp.tdy * 2, index);
851       if (len == 0) {
852    fprintf(stderr, "failed to encode image\n");
853    return 1;
854       }
855     } else {
856       j2k_codestream = (char *) malloc(cp.tdx * cp.tdy * cp.tw * cp.th * 2);
857       /* Allocate memory for all tiles */
858       cio_init(j2k_codestream, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
859       len =
860    j2k_encode(&img, &cp, j2k_codestream,
861          cp.tdx * cp.tdy * cp.tw * cp.th * 2, index);
862       if (len == 0) {
863    fprintf(stderr, "failed to encode image\n");
864    return 1;
865       }
866       f = fopen(outfile, "wb");
867       if (!f) {
868    fprintf(stderr, "failed to open %s for writing\n", outfile);
869    return 1;
870       }
871       fwrite(j2k_codestream, 1, len, f);
872       free(j2k_codestream);
873       fclose(f);
874     }
875   } else {         /* JP2 format output */
876     jp2_struct_t *jp2_struct;
877
878     if (cp.intermed_file == 1) {
879       /*For the moment, JP2 format does not use intermediary 
880       files for each tile */
881       cp.intermed_file = 0;
882     }
883     j2k_codestream = (char *) malloc(cp.tdx * cp.tdy * cp.tw * cp.th * 2);
884     jp2_codestream = (char *) malloc(cp.tdx * cp.tdy * cp.tw * cp.th * 2);
885
886     cio_init(j2k_codestream, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
887     len = j2k_encode(&img, &cp, j2k_codestream,
888       cp.tdx * cp.tdy * cp.tw * cp.th * 2, index);
889     if (len == 0) {
890       fprintf(stderr, "failed to encode image\n");
891       return 1;
892     }
893
894     jp2_struct = (jp2_struct_t *) malloc(sizeof(jp2_struct_t));
895     jp2_struct->image = &img;
896     jp2_struct->j2k_codestream_len = len;
897
898     /* Initialising the standard JP2 box content */
899     /* If you wish to modify those boxes, you have to modify 
900     the jp2_struct content */
901
902     jp2_struct->numcomps = img.numcomps;   /* NC*/
903
904     if (jp2_init_stdjp2(jp2_struct)) {
905       fprintf(stderr, "Error with jp2 initialization");
906       return 1;
907     };
908
909     jp2_struct->h = img.y1 - img.y0;   /* HEIGHT*/
910     jp2_struct->w = img.x1 - img.x0;   /* WIDTH*/
911
912     depth_0 = img.comps[0].prec - 1;
913     sign = img.comps[0].sgnd;
914     jp2_struct->bpc = depth_0 + (sign << 7);
915
916     for (i = 1; i < img.numcomps; i++) {
917       depth = img.comps[i].prec - 1;
918       sign = img.comps[i].sgnd;
919       if (depth_0 != depth)
920    jp2_struct->bpc = 255;
921     }
922
923     for (i = 0; i < img.numcomps; i++)
924       jp2_struct->comps[i].bpcc =
925       img.comps[i].prec - 1 + (img.comps[i].sgnd << 7);
926     
927     if ((img.numcomps == 1 || img.numcomps == 3)
928       && (jp2_struct->bpc != 255))
929       jp2_struct->meth = 1;
930     else
931       jp2_struct->meth = 2;
932     
933     if (jp2_struct->meth == 1) {
934       if (img.color_space == 1)
935    jp2_struct->enumcs = 16;
936       else if (img.color_space == 2)
937    jp2_struct->enumcs = 17;
938       else if (img.color_space == 3)
939    jp2_struct->enumcs = 18;   /* YUV */                         
940     } else
941       jp2_struct->enumcs = 0;   /* PROFILE (??)*/
942
943     cio_init(jp2_codestream, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
944     len = jp2_wrap_j2k(jp2_struct, j2k_codestream, jp2_codestream);
945     f = fopen(outfile, "wb");
946     if (!f) {
947       fprintf(stderr, "failed to open %s for writing\n", outfile);
948       return 1;
949     }
950     fwrite(jp2_codestream, 1, len, f);
951     free(jp2_codestream);
952     free(j2k_codestream);
953     free(jp2_struct->comps);
954     free(jp2_struct->cl);
955     free(jp2_struct);
956     fclose(f);
957   }
958
959   /* Remove the temporary files */
960   /* -------------------------- */
961   if (cp.decod_format != PGX_DFMT) {      /* PNM PGM PPM or BMP */
962     for (i = 0; i < img.numcomps; i++) {
963       char tmp;
964       sprintf(&tmp, "Compo%d", i);
965       if (remove(&tmp) == -1) {
966    fprintf(stderr, "failed to kill %s file !\n", &tmp);
967       }
968     }
969   } else {         /* PGX */
970     for (i = 0; i < cp.th; i++) {
971       char tmp;
972       sprintf(&tmp, "bandtile%d", i + 1);
973
974       if (remove(&tmp) == -1) {
975    fprintf(stderr, "failed to kill %s file !\n", &tmp);
976       }
977     }
978   }
979
980   /* Free memory */
981   free(img.comps);
982   free(cp_init.tcps);
983   if (tcp_init->numlayers > 9)
984     free(cp.matrice);
985   for (tileno = 0; tileno < cp.tw * cp.th; tileno++)
986     free(cp.tcps[tileno].tccps);
987   free(cp.tcps);
988
989
990
991
992
993   /*MEMORY LEAK*/
994
995   #ifdef _DEBUG
996
997     _CrtDumpMemoryLeaks();
998
999   #endif
1000
1001   /*MEM*/
1002
1003   return 0;
1004 }