fprintf correctly redirected to stderr or stdout
[openjpeg.git] / 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(int stepsize, int numbps, int *expn, int *mant)
254 {
255   int p, n;
256   p = floorlog2(stepsize) - 13;
257   n = 11 - floorlog2(stepsize);
258   *mant = (n < 0 ? stepsize >> -n : stepsize << n) & 0x7ff;
259   *expn = numbps - p;
260 }
261
262 void calc_explicit_stepsizes(j2k_tccp_t * tccp, int prec)
263 {
264   int numbands, bandno;
265   numbands = 3 * tccp->numresolutions - 2;
266   for (bandno = 0; bandno < numbands; bandno++) {
267     double stepsize;
268
269     int resno, level, orient, gain;
270     resno = bandno == 0 ? 0 : (bandno - 1) / 3 + 1;
271     orient = bandno == 0 ? 0 : (bandno - 1) % 3 + 1;
272     level = tccp->numresolutions - 1 - resno;
273     gain =
274       tccp->qmfbid == 0 ? 0 : (orient ==
275                                0 ? 0 : (orient == 1
276                                         || orient == 2 ? 1 : 2));
277     if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
278       stepsize = 1.0;
279     } else {
280       double norm = dwt_norms_97[orient][level];
281       stepsize = (1 << (gain + 1)) / norm;
282     }
283     encode_stepsize((int) floor(stepsize * 8192.0), prec + gain,
284                     &tccp->stepsizes[bandno].expn,
285                     &tccp->stepsizes[bandno].mant);
286   }
287 }
288
289 int main(int argc, char **argv)
290 {
291   int len;
292   int NumResolution, numD_min;  /*   NumResolution : number of resolution                     */
293   int Tile_arg;                 /*   Tile_arg = 0 (not in argument) ou = 1 (in argument)      */
294   int CSty;                     /*   CSty : coding style                                      */
295   int Prog_order;               /*   progression order (default LRCP)                         */
296   char progression[4];
297   int numpocs, numpocs_tile;    /*   Number of progression order change (POC) default 0       */
298   int prcw_init[J2K_MAXRLVLS];  /*   Initialisation Precinct width                            */
299   int prch_init[J2K_MAXRLVLS];  /*   Initialisation Precinct height                           */
300   //int prcw_init, prch_init;                     /*   Initialisation precincts' size                           */
301   int cblockw_init, cblockh_init;       /*   Initialisation codeblocks' size                          */
302   int mode, value;              /*   Mode switch (cblk_style)                                 */
303   int subsampling_dx, subsampling_dy;   /* subsampling value for dx and dy                    */
304   int ROI_compno, ROI_shift;    /*   region of interrest                                      */
305   int Dim[2];                   /*   portion of the image coded                               */
306   int TX0, TY0;                 /*   tile off-set                                             */
307   j2k_image_t img;
308   j2k_cp_t cp, cp_init;         /*   cp_init is used to initialise in multiple tiles          */
309   j2k_tcp_t *tcp, *tcp_init;    /*   tcp_init is used to initialise in multiple tile          */
310   j2k_poc_t POC[32];            /*   POC : used in case of Progression order change           */
311   j2k_poc_t *tcp_poc;
312   j2k_tccp_t *tccp;
313   int i, tileno, j;
314   char *infile = 0;
315   char *outfile = 0;
316   char *index = 0;
317   char *s, S1, S2, S3;
318   int ir = 0;
319   int res_spec = 0;             /*   For various precinct sizes specification                 */
320   char sep;
321   char *outbuf;
322   FILE *f;
323
324
325   /* default value */
326   /* ------------- */
327   NumResolution = 6;
328   CSty = 0;
329   cblockw_init = 64;
330   cblockh_init = 64;
331   cp.tw = 1;
332   cp.th = 1;
333   cp.index_on = 0;
334   Prog_order = 0;
335   numpocs = 0;
336   mode = 0;
337   subsampling_dx = 1;
338   subsampling_dy = 1;
339   ROI_compno = -1;              /* no ROI */
340   ROI_shift = 0;
341   Dim[0] = 0;
342   Dim[1] = 0;
343   TX0 = 0;
344   TY0 = 0;
345   cp.comment = "Created by OpenJPEG version 0.9";
346   cp.disto_alloc = 0;
347   cp.fixed_alloc = 0;
348   cp.fixed_quality = 0;         //add fixed_quality
349   /* img.PPT=0; */
350
351   Tile_arg = 0;
352   cp_init.tcps = (j2k_tcp_t *) malloc(sizeof(j2k_tcp_t));       /* initialisation if only one tile */
353   tcp_init = &cp_init.tcps[0];
354   tcp_init->numlayers = 0;
355
356   cp.intermed_file = 1;
357
358   while (1) {
359     int c = getopt(argc, argv,
360                    "i:o:r:q:f:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I");
361     if (c == -1)
362       break;
363     switch (c) {
364     case 'i':                   /* IN fill */
365       infile = optarg;
366       s = optarg;
367       while (*s) {
368         s++;
369       }
370       s--;
371       S3 = *s;
372       s--;
373       S2 = *s;
374       s--;
375       S1 = *s;
376
377       if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
378           || (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
379         cp.image_type = 0;
380         break;
381       }
382
383       if ((S1 == 'p' && S2 == 'n' && S3 == 'm')
384           || (S1 == 'P' && S2 == 'N' && S3 == 'M')
385           || (S1 == 'p' && S2 == 'g' && S3 == 'm') || (S1 == 'P'
386                                                        && S2 == 'G'
387                                                        && S3 == 'M')
388           || (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
389                                                        && S2 == 'p'
390                                                        && S3 == 'm')) {
391         cp.image_type = 1;
392         break;
393       }
394
395       if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
396           || (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
397         cp.image_type = 2;
398         break;
399       }
400       fprintf(stderr,
401               "!! Unrecognized format for infile : %c%c%c [accept only *.pnm, *.pgm, *.ppm, *.pgx or *.bmp] !!\n\n",
402               S1, S2, S3);
403       return 1;
404       break;
405       /* ----------------------------------------------------- */
406     case 'o':                   /* OUT fill */
407       outfile = optarg;
408       while (*outfile) {
409         outfile++;
410       }
411       outfile--;
412       S3 = *outfile;
413       outfile--;
414       S2 = *outfile;
415       outfile--;
416       S1 = *outfile;
417
418       outfile = optarg;
419
420       if ((S1 == 'j' && S2 == '2' && S3 == 'k')
421           || (S1 == 'J' && S2 == '2' && S3 == 'K'))
422         cp.JPEG2000_format = 0;
423       else if ((S1 == 'j' && S2 == 'p' && S3 == '2')
424                || (S1 == 'J' && S2 == 'P' && S3 == '2'))
425         cp.JPEG2000_format = 1;
426       else {
427         fprintf(stderr,
428                 "Unknown output format image *.%c%c%c [only *.j2k, *.jp2]!! \n",
429                 S1, S2, S3);
430         return 1;
431       }
432
433
434
435       break;
436       /* ----------------------------------------------------- */
437     case 'r':                   /* rates rates/distorsion */
438       s = optarg;
439       while (sscanf(s, "%d", &tcp_init->rates[tcp_init->numlayers]) == 1) {
440         tcp_init->numlayers++;
441         while (*s && *s != ',') {
442           s++;
443         }
444         if (!*s)
445           break;
446         s++;
447       }
448       cp.disto_alloc = 1;
449       cp.matrice = NULL;
450       break;
451       /* ----------------------------------------------------- */
452     case 'q':                   /* add fixed_quality */
453       s = optarg;
454       while (sscanf(s, "%f", &tcp_init->distoratio[tcp_init->numlayers])
455              == 1) {
456         tcp_init->numlayers++;
457         while (*s && *s != ',') {
458           s++;
459         }
460         if (!*s)
461           break;
462         s++;
463       }
464       cp.fixed_quality = 1;
465       cp.matrice = NULL;
466       break;
467       /* dda */
468       /* ----------------------------------------------------- */
469     case 'f':                   /* mod fixed_quality (before : -q) */
470       s = optarg;
471       sscanf(s, "%d", &tcp_init->numlayers);
472       s++;
473       if (tcp_init->numlayers > 9)
474         s++;
475       cp.matrice =
476         (int *) malloc(tcp_init->numlayers * NumResolution * 3 *
477                        sizeof(int));
478       s = s + 2;
479       for (i = 0; i < tcp_init->numlayers; i++) {
480         tcp_init->rates[i] = 1;
481         sscanf(s, "%d,", &cp.matrice[i * NumResolution * 3]);
482         s += 2;
483         if (cp.matrice[i * NumResolution * 3] > 9)
484           s++;
485         cp.matrice[i * NumResolution * 3 + 1] = 0;
486         cp.matrice[i * NumResolution * 3 + 2] = 0;
487         for (j = 1; j < NumResolution; j++) {
488           sscanf(s, "%d,%d,%d",
489                  &cp.matrice[i * NumResolution * 3 + j * 3 + 0],
490                  &cp.matrice[i * NumResolution * 3 + j * 3 + 1],
491                  &cp.matrice[i * NumResolution * 3 + j * 3 + 2]);
492           s += 6;
493           if (cp.matrice[i * NumResolution * 3 + j * 3] > 9)
494             s++;
495           if (cp.matrice[i * NumResolution * 3 + j * 3 + 1] > 9)
496             s++;
497           if (cp.matrice[i * NumResolution * 3 + j * 3 + 2] > 9)
498             s++;
499         }
500         if (i < tcp_init->numlayers - 1)
501           s++;
502       }
503       cp.fixed_alloc = 1;
504       break;
505       /* ----------------------------------------------------- */
506     case 't':                   /* tiles */
507       sscanf(optarg, "%d,%d", &cp.tdx, &cp.tdy);
508       Tile_arg = 1;
509       break;
510       /* ----------------------------------------------------- */
511     case 'n':                   /* resolution */
512       sscanf(optarg, "%d", &NumResolution);
513       break;
514       /* ----------------------------------------------------- */
515     case 'c':                   /* precinct dimension */
516       s = optarg;
517       do {
518         sep = 0;
519         sscanf(s, "[%d,%d]%c", &prcw_init[res_spec],
520                &prch_init[res_spec], &sep);
521         CSty |= 0x01;
522         res_spec++;
523         s = strpbrk(s, "]") + 2;
524       }
525       while (sep == ',');
526       break;
527       /* ----------------------------------------------------- */
528     case 'b':                   /* code-block dimension */
529       sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
530       if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
531           || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
532         fprintf(stderr,
533                 "!! Size of code_block error (option -b) !!\n\nRestriction :\n    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
534         return 1;
535       }
536       break;
537       /* ----------------------------------------------------- */
538     case 'x':                   /* creation of index file */
539       index = optarg;
540       cp.index_on = 1;
541       break;
542       /* ----------------------------------------------------- */
543     case 'p':                   /* progression order */
544       s = optarg;
545       for (i = 0; i < 4; i++) {
546         progression[i] = *s;
547         s++;
548       }
549       Prog_order = give_progression(progression);
550
551       if (Prog_order == -1) {
552         fprintf(stderr,
553                 "Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
554         return 1;
555       }
556       break;
557       /* ----------------------------------------------------- */
558     case 's':                   /* subsampling factor */
559       if (sscanf(optarg, "%d,%d", &subsampling_dx, &subsampling_dy) != 2) {
560         fprintf(stderr,
561                 "'-s' sub-sampling argument error !  [-s dx,dy]\n");
562         return 1;
563       }
564       break;
565       /* ----------------------------------------------------- */
566     case 'd':                   /* coordonnate of the reference grid */
567       if (sscanf(optarg, "%d,%d", &Dim[0], &Dim[1]) != 2) {
568         fprintf(stderr,
569                 "-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
570         return 1;
571       }
572       break;
573       /* ----------------------------------------------------- */
574     case 'h':                   /* Display an help description */
575       help_display();
576       return 0;
577       break;
578       /* ----------------------------------------------------- */
579     case 'P':                   /* POC */
580       fprintf(stderr, "/----------------------------------\\\n");
581       fprintf(stderr, "|  POC option not fully tested !!  |\n");
582       fprintf(stderr, "\\----------------------------------/\n");
583
584       s = optarg;
585       while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
586                     &POC[numpocs].resno0, &POC[numpocs].compno0,
587                     &POC[numpocs].layno1, &POC[numpocs].resno1,
588                     &POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
589         POC[numpocs].prg = give_progression(POC[numpocs].progorder);
590         /* POC[numpocs].tile; */
591         numpocs++;
592         while (*s && *s != '/') {
593           s++;
594         }
595         if (!*s)
596           break;
597         s++;
598       }
599       break;
600       /* ------------------------------------------------------ */
601     case 'S':                   /* SOP marker */
602       CSty |= 0x02;
603       break;
604       /* ------------------------------------------------------ */
605     case 'E':                   /* EPH marker */
606       CSty |= 0x04;
607       break;
608       /* ------------------------------------------------------ */
609     case 'M':                   /* Mode switch pas tous au point !! */
610       if (sscanf(optarg, "%d", &value) == 1) {
611         for (i = 0; i <= 5; i++) {
612           int cache = value & (1 << i);
613           if (cache)
614             mode |= (1 << i);
615         }
616       }
617       break;
618       /* ------------------------------------------------------ */
619     case 'R':                   /* ROI */
620       if (sscanf(optarg, "OI:c=%d,U=%d", &ROI_compno, &ROI_shift) != 2) {
621         fprintf(stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
622         return 1;
623       }
624       break;
625       /* ------------------------------------------------------ */
626     case 'T':                   /* Tile offset */
627       if (sscanf(optarg, "%d,%d", &TX0, &TY0) != 2) {
628         fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
629         return 1;
630       }
631       break;
632       /* ------------------------------------------------------ */
633     case 'C':                   /* Add a comment */
634       cp.comment = optarg;
635       break;
636       /* ------------------------------------------------------ */
637     case 'I':                   /* reversible or not */
638       ir = 1;
639       break;
640       /* ------------------------------------------------------ */
641     default:
642       return 1;
643     }
644   }
645
646   cp.tx0 = TX0;
647   cp.ty0 = TY0;
648
649   /* Error messages */
650   /* -------------- */
651   if (!infile || !outfile) {
652     fprintf(stderr,
653             "usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
654     return 1;
655   }
656
657   if ((cp.disto_alloc || cp.fixed_alloc || cp.fixed_quality)
658       && (!(cp.disto_alloc ^ cp.fixed_alloc ^ cp.fixed_quality))) {
659     fprintf(stderr,
660             "Error: options -r -q and -f can not be used together !!\n");
661     return 1;
662   }                             // mod fixed_quality
663
664   /* if no rate entered, lossless by default */
665   if (tcp_init->numlayers == 0) {
666     tcp_init->rates[tcp_init->numlayers] = 0;   //MOD antonin : losslessbug
667     tcp_init->numlayers++;
668     cp.disto_alloc = 1;
669   }
670
671   if (TX0 > Dim[0] || TY0 > Dim[1]) {
672     fprintf(stderr,
673             "Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
674             TX0, Dim[0], TY0, Dim[1]);
675     return 1;
676   }
677
678   for (i = 0; i < numpocs; i++) {
679     if (POC[i].prg == -1) {
680       fprintf(stderr,
681               "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
682               i + 1);
683     }
684   }
685
686   switch (cp.image_type) {
687   case 0:
688     if (Tile_arg) {
689       if (!pgxtoimage
690           (infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim, cp))
691       {
692         fprintf(stderr, "not a pgx file\n");
693         return 1;
694       }
695     } else {
696       if (!pgxtoimage
697           (infile, &img, -1, subsampling_dx, subsampling_dy, Dim, cp)) {
698         fprintf(stderr, " not a pgx file\n");
699         return 1;
700       }
701     }
702     break;
703
704   case 1:
705     if (!pnmtoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
706       fprintf(stderr, " not a pnm file\n");
707       return 1;
708     }
709     break;
710
711   case 2:
712     if (!bmptoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
713       fprintf(stderr, " not a bmp file\n");
714       return 1;
715     }
716     break;
717   }
718   /* to respect profile - 0 */
719   /* ---------------------- */
720   numD_min = 0;
721   /*   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++;
722      if ((numD_min+1)>NumResolution)
723      {
724      fprintf(stderr,"\n********************************************************************************\n\n");
725      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);
726      fprintf(stderr,  "********************************************************************************\n\n");
727      NumResolution=numD_min+1;
728      } */
729
730   if (Tile_arg == 1) {
731     cp.tw = int_ceildiv(img.x1 - cp.tx0, cp.tdx);
732     cp.th = int_ceildiv(img.y1 - cp.ty0, cp.tdy);
733   } else {
734     cp.tdx = img.x1 - cp.tx0;
735     cp.tdy = img.y1 - cp.ty0;
736   }
737
738   /* Initialization for PPM marker */
739   cp.ppm = 0;
740   cp.ppm_data = NULL;
741   cp.ppm_previous = 0;
742   cp.ppm_store = 0;
743
744   /* Init the mutiple tiles */
745   /* ---------------------- */
746   cp.tcps = (j2k_tcp_t *) malloc(cp.tw * cp.th * sizeof(j2k_tcp_t));
747
748   for (tileno = 0; tileno < cp.tw * cp.th; tileno++) {
749     tcp = &cp.tcps[tileno];
750     tcp->numlayers = tcp_init->numlayers;
751     for (j = 0; j < tcp->numlayers; j++) {
752       if (cp.fixed_quality)     // add fixed_quality
753         tcp->distoratio[j] = tcp_init->distoratio[j];
754       else
755         tcp->rates[j] = tcp_init->rates[j];
756     }
757     tcp->csty = CSty;
758     tcp->prg = Prog_order;
759     tcp->mct = img.numcomps == 3 ? 1 : 0;
760     tcp->ppt = 0;
761     tcp->ppt_data = NULL;
762     tcp->ppt_store = 0;
763
764     numpocs_tile = 0;
765     tcp->POC = 0;
766     if (numpocs) {
767       /* intialisation of POC */
768       tcp->POC = 1;
769       for (i = 0; i < numpocs; i++) {
770         if (tileno == POC[i].tile - 1 || POC[i].tile == -1) {
771           tcp_poc = &tcp->pocs[numpocs_tile];
772           tcp_poc->resno0 = POC[numpocs_tile].resno0;
773           tcp_poc->compno0 = POC[numpocs_tile].compno0;
774           tcp_poc->layno1 = POC[numpocs_tile].layno1;
775           tcp_poc->resno1 = POC[numpocs_tile].resno1;
776           tcp_poc->compno1 = POC[numpocs_tile].compno1;
777           tcp_poc->prg = POC[numpocs_tile].prg;
778           tcp_poc->tile = POC[numpocs_tile].tile;
779           numpocs_tile++;
780         }
781       }
782     }
783     tcp->numpocs = numpocs_tile;
784     tcp->tccps = (j2k_tccp_t *) malloc(img.numcomps * sizeof(j2k_tccp_t));
785
786     for (i = 0; i < img.numcomps; i++) {
787       tccp = &tcp->tccps[i];
788       tccp->csty = CSty & 0x01; /* 0 => one precinct || 1 => custom precinct  */
789       tccp->numresolutions = NumResolution;
790       tccp->cblkw = int_floorlog2(cblockw_init);
791       tccp->cblkh = int_floorlog2(cblockh_init);
792       tccp->cblksty = mode;
793       tccp->qmfbid = ir ? 0 : 1;
794       tccp->qntsty = ir ? J2K_CCP_QNTSTY_SEQNT : J2K_CCP_QNTSTY_NOQNT;
795       tccp->numgbits = 2;
796       if (i == ROI_compno)
797         tccp->roishift = ROI_shift;
798       else
799         tccp->roishift = 0;
800       if (CSty & J2K_CCP_CSTY_PRT) {
801         int p = 0;
802         for (j = tccp->numresolutions - 1; j >= 0; j--) {
803           if (p < res_spec) {
804             if (prcw_init[p] < 1)
805               tccp->prcw[j] = 1;
806             else
807               tccp->prcw[j] = int_floorlog2(prcw_init[p]);
808
809             if (prch_init[p] < 1)
810               tccp->prch[j] = 1;
811             else
812               tccp->prch[j] = int_floorlog2(prch_init[p]);
813           } else {
814             int size_prcw, size_prch;
815             size_prcw = prcw_init[res_spec - 1] >> (p - (res_spec - 1));
816             size_prch = prch_init[res_spec - 1] >> (p - (res_spec - 1));
817             if (size_prcw < 1)
818               tccp->prcw[j] = 1;
819             else
820               tccp->prcw[j] = int_floorlog2(size_prcw);
821             if (size_prch < 1)
822               tccp->prch[j] = 1;
823             else
824               tccp->prch[j] = int_floorlog2(size_prch);
825           }
826           p++;
827           /*printf("\nsize precinct pour level %d : %d,%d\n", j,
828              tccp->prcw[j], tccp->prch[j]); */
829         }
830       } else {
831         for (j = 0; j < tccp->numresolutions; j++) {
832           tccp->prcw[j] = 15;
833           tccp->prch[j] = 15;
834         }
835       }
836       calc_explicit_stepsizes(tccp, img.comps[i].prec);
837     }
838   }
839
840
841
842   if (cp.JPEG2000_format == 0) {        /* J2K format output */
843     if (cp.intermed_file == 1) {        /* After the encoding of each tile, j2k_encode 
844                                            stores the data in the file */
845       len = j2k_encode(&img, &cp, outfile, cp.tdx * cp.tdy * 2, index);
846       if (len == 0) {
847         fprintf(stderr, "failed to encode image\n");
848         return 1;
849       }
850     } else {
851       outbuf = (char *) malloc(cp.tdx * cp.tdy * cp.tw * cp.th * 2);    /* Allocate memory for all tiles */
852       cio_init(outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
853       len =
854         j2k_encode(&img, &cp, outbuf,
855                    cp.tdx * cp.tdy * cp.tw * cp.th * 2, index);
856       if (len == 0) {
857         fprintf(stderr, "failed to encode image\n");
858         return 1;
859       }
860       f = fopen(outfile, "wb");
861       if (!f) {
862         fprintf(stderr, "failed to open %s for writing\n", outfile);
863         return 1;
864       }
865       fwrite(outbuf, 1, len, f);
866       free(outbuf);
867       fclose(f);
868     }
869   } else {                      /* JP2 format output */
870
871     jp2_struct_t *jp2_struct;
872     jp2_struct = (jp2_struct_t *) malloc(sizeof(jp2_struct_t));
873     jp2_struct->image = &img;
874
875     /* Initialising the standard JP2 box content */
876     /* If you wish to modify those boxes, you have to modify the jp2_struct content */
877     if (jp2_init_stdjp2(jp2_struct, &img)) {
878       fprintf(stderr, "Error with jp2 initialization");
879       return 1;
880     };
881
882     if (cp.intermed_file == 1) {
883       /*For the moment, JP2 format does not use intermediary files for each tile */
884       cp.intermed_file = 0;
885     }
886     outbuf = (char *) malloc(cp.tdx * cp.tdy * cp.tw * cp.th * 2);
887     cio_init(outbuf, cp.tdx * cp.tdy * cp.tw * cp.th * 2);
888     len = jp2_encode(jp2_struct, &cp, outbuf, index);
889     if (len == 0) {
890       fprintf(stderr, "failed to encode image\n");
891       return 1;
892     }
893     f = fopen(outfile, "wb");
894     if (!f) {
895       fprintf(stderr, "failed to open %s for writing\n", outfile);
896       return 1;
897     }
898     fwrite(outbuf, 1, len, f);
899     free(outbuf);
900     fclose(f);
901   }
902
903   /* Remove the temporary files */
904   /* -------------------------- */
905   if (cp.image_type) {          /* PNM PGM PPM */
906     for (i = 0; i < img.numcomps; i++) {
907       char tmp;
908       sprintf(&tmp, "Compo%d", i);
909       if (remove(&tmp) == -1) {
910         fprintf(stderr, "failed to kill %s file !\n", &tmp);
911       }
912     }
913   } else {                      /* PGX */
914     for (i = 0; i < cp.th; i++) {
915       char tmp;
916       sprintf(&tmp, "bandtile%d", i + 1);
917
918       if (remove(&tmp) == -1) {
919         fprintf(stderr, "failed to kill %s file !\n", &tmp);
920       }
921     }
922   }
923
924   /* Free memory */
925   free(img.comps);
926   free(cp_init.tcps);
927   if (tcp_init->numlayers > 9)
928     free(cp.matrice);
929   for (tileno = 0; tileno < cp.tw * cp.th; tileno++)
930     free(cp.tcps[tileno].tccps);
931   free(cp.tcps);
932
933
934
935
936
937   //MEMORY LEAK
938
939   #ifdef _DEBUG
940
941     _CrtDumpMemoryLeaks();
942
943   #endif
944
945   //MEM
946
947   return 0;
948 }