Ajout de la possibilit� de taille de precincts diff�rente pour chaque r�solution
[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 #include <openjpeg.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <math.h>
33 #include <string.h>
34 #ifndef DONT_HAVE_GETOPT
35 #include <getopt.h>
36 #else
37 #include "compat/getopt.h"
38 #endif
39 #include "convert.h"
40
41 void help_display()
42 {
43   printf("HELP\n----\n\n");
44   printf("- the option -help displays the readme.txt file on screen\n\n");
45
46
47   printf("List of parameters for the coder JPEG 2000 :\n");
48   printf("\n");
49   printf
50     ("- The markers COD and QCD are writed both of two in the main_header and never appear in the tile_header.  The markers in the main header are : SOC SIZ COD QCD COM.\n");
51   printf("\n");
52   printf
53     ("- This coder can encode mega image, a test was made on a 24000x24000 pixels color image.  You need enough disk space memory (twice the original) to encode the image. (i.e. for a 1.5 Gb image you need a minimum of 3Gb of disk memory)\n");
54   printf("\n");
55   printf("REMARKS :\n");
56   printf("---------\n");
57   printf("\n");
58   printf
59     ("* the value of rate enter in the code line is the compression factor !\n");
60   printf("exemple :\n");
61   printf("\n");
62   printf
63     ("-r 20,10,1 means quality 1 : compress 20x, quality 2 : compress 10x and quality 3 : compress 1x = lossless\n");
64   printf("\n");
65   printf("By default :\n");
66   printf("------------\n");
67   printf("\n");
68   printf(" * lossless\n");
69   printf(" * 1 tile\n");
70   printf(" * size of precinct 2^15 x 2^15 (means 1 precinct)\n");
71   printf(" * size of code-block 64 x 64\n");
72   printf(" * Number of resolution : 6\n");
73   printf(" * No SOP marker in the codestream\n");
74   printf(" * No EPH marker in the codestream\n");
75   printf(" * No sub-sampling in x and y direction\n");
76   printf(" * No mode switch activated\n");
77   printf(" * progression order : LRCP\n");
78   printf(" * No index file\n");
79   printf(" * No ROI upshifted\n");
80   printf(" * No offset of the origin of the image\n");
81   printf(" * No offset of the origin of the tiles\n");
82   printf(" * Reversible DWT 5-3\n");
83   printf("\n");
84   printf("Parameters :\n");
85   printf("------------\n");
86   printf("\n");
87   printf
88     ("-i             : source file  (-i source.pnm also *.pgm, *.ppm) required\n");
89   printf("\n");
90   printf("-o             : destination file (-o dest.j2k) required\n");
91   printf("\n");
92   printf("-help          : Display the help information optional\n ");
93   printf("\n");
94   printf("-r             : different rates (-r 20,10,5) optional\n ");
95   printf("\n");
96   printf("-n             : Number of resolution (-n 3) optional\n");
97   printf("\n");
98   printf("-b             : size of code block (-b 32,32) optional\n");
99   printf("\n");
100   printf("-c             : size of precinct (-c 128,128) optional\n");
101   printf("\n");
102   printf("-t             : size of tile (-t 512,512) optional\n");
103   printf("\n");
104   printf
105     ("-p             : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] optional\n");
106   printf("\n");
107   printf
108     ("-s             : subsampling factor (-s 2,2) [-s X,Y] optional\n");
109   printf("\n");
110   printf
111     ("-SOP           : write SOP marker before each packet optional\n");
112   printf("\n");
113   printf
114     ("-EPH           : write EPH marker after each header packet optional\n");
115   printf("\n");
116   printf
117     ("-M             : mode switch (-M 3) [1=BYPASS(LAZY) 2=RESET 4=RESTART(TERMALL) 8=VSC 16=ERTERM(SEGTERM) 32=SEGMARK(SEGSYM)] optional\n");
118   printf
119     ("                    for several mode switch you have to add the value of each mode you want\n");
120   printf
121     ("                    ex : RESTART(4) + RESET(2) + SEGMARK(32) = -M 38\n");
122   printf("\n");
123   printf
124     ("-x             : Create an index file *.Idx (-x index_name.Idx) optional\n");
125   printf("\n");
126   printf
127     ("-ROI:c=%%d,U=%%d : quantization indices upshifted for component c=%%d [\%%d = 0,1,2]\n");
128   printf
129     ("                 with a value of U=%%d [0 <= %%d <= 37] (i.e. -ROI:c=0,U=25) optional\n");
130   printf("\n");
131   printf
132     ("-d             : offset of the origin of the image (-d 150,300) optional\n");
133   printf("\n");
134   printf
135     ("-T             : offset of the origin of the tiles (-T 100,75) optional\n");
136   printf("\n");
137   printf("-I             : Use the irreversible DWT 9-7 (-I) optional\n");
138   printf("\n");
139   printf("IMPORTANT :\n");
140   printf("-----------\n");
141   printf("\n");
142   printf("* subsampling bigger than 2 can produce error\n");
143   printf("\n");
144   printf("The index file respect the structure below :\n");
145   printf("---------------------------------------------\n");
146   printf("\n");
147   printf("Image_height Image_width\n");
148   printf("progression order\n");
149   printf("Tiles_size_X Tiles_size_Y\n");
150   printf("Components_nb\n");
151   printf("Layers_nb\n");
152   printf("decomposition_levels\n");
153   printf("Precincts_size_X Precincts_size_Y\n");
154   printf("Main_header_end_position\n");
155   printf("Codestream_size\n");
156   printf("Tile0 start_pos end_Theader end_pos\n");
157   printf("Tile1  ''           ''        ''\n");
158   printf("...\n");
159   printf("TileN  ''           ''        ''\n");
160   printf("Tpacket_0 Tile layer res. comp. prec. start_pos end_pos\n");
161   printf("...\n");
162   printf("Tpacket_M  ''    ''   ''   ''    ''       ''       ''\n");
163 }
164
165 int give_progression(char progression[4])
166 {
167   if (progression[0] == 'L' && progression[1] == 'R'
168       && progression[2] == 'C' && progression[3] == 'P') {
169     return 0;
170   } else {
171     if (progression[0] == 'R' && progression[1] == 'L'
172         && progression[2] == 'C' && progression[3] == 'P') {
173       return 1;
174     } else {
175       if (progression[0] == 'R' && progression[1] == 'P'
176           && progression[2] == 'C' && progression[3] == 'L') {
177         return 2;
178       } else {
179         if (progression[0] == 'P' && progression[1] == 'C'
180             && progression[2] == 'R' && progression[3] == 'L') {
181           return 3;
182         } else {
183           if (progression[0] == 'C' && progression[1] == 'P'
184               && progression[2] == 'R' && progression[3] == 'L') {
185             return 4;
186           } else {
187             return -1;
188           }
189         }
190       }
191     }
192   }
193 }
194
195 double dwt_norms_97[4][10] = {
196   {1.000, 1.965, 4.177, 8.403, 16.90, 33.84, 67.69, 135.3, 270.6, 540.9},
197   {2.022, 3.989, 8.355, 17.04, 34.27, 68.63, 137.3, 274.6, 549.0},
198   {2.022, 3.989, 8.355, 17.04, 34.27, 68.63, 137.3, 274.6, 549.0},
199   {2.080, 3.865, 8.307, 17.18, 34.71, 69.59, 139.3, 278.6, 557.2}
200 };
201
202 int floorlog2(int a)
203 {
204   int l;
205   for (l = 0; a > 1; l++) {
206     a >>= 1;
207   }
208   return l;
209 }
210
211 void encode_stepsize(int stepsize, int numbps, int *expn, int *mant)
212 {
213   int p, n;
214   p = floorlog2(stepsize) - 13;
215   n = 11 - floorlog2(stepsize);
216   *mant = (n < 0 ? stepsize >> -n : stepsize << n) & 0x7ff;
217   *expn = numbps - p;
218 }
219
220 void calc_explicit_stepsizes(j2k_tccp_t * tccp, int prec)
221 {
222   int numbands, bandno;
223   numbands = 3 * tccp->numresolutions - 2;
224   for (bandno = 0; bandno < numbands; bandno++) {
225     double stepsize;
226
227     int resno, level, orient, gain;
228     resno = bandno == 0 ? 0 : (bandno - 1) / 3 + 1;
229     orient = bandno == 0 ? 0 : (bandno - 1) % 3 + 1;
230     level = tccp->numresolutions - 1 - resno;
231     gain =
232       tccp->qmfbid == 0 ? 0 : (orient ==
233                                0 ? 0 : (orient == 1
234                                         || orient == 2 ? 1 : 2));
235     if (tccp->qntsty == J2K_CCP_QNTSTY_NOQNT) {
236       stepsize = 1.0;
237     } else {
238       double norm = dwt_norms_97[orient][level];
239       stepsize = (1 << (gain + 1)) / norm;
240     }
241     encode_stepsize((int) floor(stepsize * 8192.0), prec + gain,
242                     &tccp->stepsizes[bandno].expn,
243                     &tccp->stepsizes[bandno].mant);
244   }
245 }
246
247 int main(int argc, char **argv)
248 {
249   int len;
250   int NumResolution, numD_min;  /*   NumResolution : number of resolution                     */
251   int Tile_arg;                 /*   Tile_arg = 0 (not in argument) ou = 1 (in argument)      */
252   int CSty;                     /*   CSty : coding style                                      */
253   int Prog_order;               /*   progression order (default LRCP)                         */
254   char progression[4];
255   int numpocs, numpocs_tile;    /*   Number of progression order change (POC) default 0       */
256   int prcw_init[J2K_MAXRLVLS];  /*   Initialisation Precinct width                            */
257   int prch_init[J2K_MAXRLVLS];  /*   Initialisation Precinct height                           */
258   //int prcw_init, prch_init;                     /*   Initialisation precincts' size                           */
259   int cblockw_init, cblockh_init;       /*   Initialisation codeblocks' size                          */
260   int mode, value;              /*   Mode switch (cblk_style)                                 */
261   int subsampling_dx, subsampling_dy;   /* subsampling value for dx and dy                    */
262   int ROI_compno, ROI_shift;    /*   region of interrest                                      */
263   int Dim[2];                   /*   portion of the image coded                               */
264   int TX0, TY0;                 /*   tile off-set                                             */
265   j2k_image_t img;
266   j2k_cp_t cp, cp_init;         /*   cp_init is used to initialise in multiple tiles          */
267   j2k_tcp_t *tcp, *tcp_init;    /*   tcp_init is used to initialise in multiple tile          */
268   j2k_poc_t POC[32];            /*   POC : used in case of Progression order change           */
269   j2k_poc_t *tcp_poc;
270   j2k_tccp_t *tccp;
271   int i, tileno, j;
272   char *infile = 0;
273   char *outfile = 0;
274   char *index = 0;
275   char *s, S1, S2, S3;
276   int ir = 0;
277   int res_spec = 0;             /*   For various precinct sizes specification                 */
278   char sep;
279
280   /* default value */
281   /* ------------- */
282   NumResolution = 6;
283   CSty = 0;
284   cblockw_init = 64;
285   cblockh_init = 64;
286   cp.tw = 1;
287   cp.th = 1;
288   img.index_on = 0;
289   Prog_order = 0;
290   numpocs = 0;
291   mode = 0;
292   subsampling_dx = 1;
293   subsampling_dy = 1;
294   ROI_compno = -1;              /* no ROI */
295   ROI_shift = 0;
296   Dim[0] = 0;
297   Dim[1] = 0;
298   TX0 = 0;
299   TY0 = 0;
300   cp.comment = NULL;
301   cp.disto_alloc = 0;
302   cp.fixed_alloc = 0;
303   /* img.PPT=0; */
304
305   Tile_arg = 0;
306   cp_init.tcps = (j2k_tcp_t *) malloc(sizeof(j2k_tcp_t));       /* initialisation if only one tile */
307   tcp_init = &cp_init.tcps[0];
308   tcp_init->numlayers = 0;
309
310   while (1) {
311     int c = getopt(argc, argv,
312                    "i:o:r:q:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I");
313     if (c == -1)
314       break;
315     switch (c) {
316     case 'i':                   /* IN fill */
317       infile = optarg;
318       s = optarg;
319       while (*s) {
320         s++;
321       }
322       s--;
323       S3 = *s;
324       s--;
325       S2 = *s;
326       s--;
327       S1 = *s;
328
329       if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
330           || (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
331         cp.image_type = 0;
332         break;
333       }
334
335       if ((S1 == 'p' && S2 == 'n' && S3 == 'm')
336           || (S1 == 'P' && S2 == 'N' && S3 == 'M')
337           || (S1 == 'p' && S2 == 'g' && S3 == 'm') || (S1 == 'P'
338                                                        && S2 == 'G'
339                                                        && S3 == 'M')
340           || (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
341                                                        && S2 == 'p'
342                                                        && S3 == 'm')) {
343         cp.image_type = 1;
344         break;
345       }
346
347       if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
348           || (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
349         cp.image_type = 2;
350         break;
351       }
352       fprintf(stderr,
353               "!! Unrecognized format for infile : %c%c%c [accept only *.pnm, *.pgm, *.ppm, *.pgx or *.bmp] !!\n\n",
354               S1, S2, S3);
355       return 1;
356       break;
357       /* ----------------------------------------------------- */
358     case 'o':                   /* OUT fill */
359       outfile = optarg;
360       break;
361       /* ----------------------------------------------------- */
362     case 'r':                   /* rates rates/distorsion */
363       s = optarg;
364       while (sscanf(s, "%d", &tcp_init->rates[tcp_init->numlayers])
365              == 1) {
366         tcp_init->numlayers++;
367         while (*s && *s != ',') {
368           s++;
369         }
370         if (!*s)
371           break;
372         s++;
373       }
374       cp.disto_alloc = 1;
375       cp.matrice = NULL;
376       break;
377       /* ----------------------------------------------------- */
378     case 'q':                   /* rates fixed */
379       s = optarg;
380       sscanf(s, "%d", &tcp_init->numlayers);
381       s++;
382       if (tcp_init->numlayers > 9)
383         s++;
384       cp.matrice =
385         (int *) malloc(tcp_init->numlayers * NumResolution * 3 *
386                        sizeof(int));
387       s = s + 2;
388       for (i = 0; i < tcp_init->numlayers; i++) {
389         tcp_init->rates[i] = 1;
390         sscanf(s, "%d,", &cp.matrice[i * NumResolution * 3]);
391         s += 2;
392         if (cp.matrice[i * NumResolution * 3] > 9)
393           s++;
394         cp.matrice[i * NumResolution * 3 + 1] = 0;
395         cp.matrice[i * NumResolution * 3 + 2] = 0;
396         for (j = 1; j < NumResolution; j++) {
397           sscanf(s, "%d,%d,%d",
398                  &cp.matrice[i * NumResolution * 3 + j * 3 + 0],
399                  &cp.matrice[i * NumResolution * 3 + j * 3 + 1],
400                  &cp.matrice[i * NumResolution * 3 + j * 3 + 2]);
401           s += 6;
402           if (cp.matrice[i * NumResolution * 3 + j * 3] > 9)
403             s++;
404           if (cp.matrice[i * NumResolution * 3 + j * 3 + 1] > 9)
405             s++;
406           if (cp.matrice[i * NumResolution * 3 + j * 3 + 2] > 9)
407             s++;
408         }
409         if (i < tcp_init->numlayers - 1)
410           s++;
411       }
412       cp.fixed_alloc = 1;
413       break;
414       /* ----------------------------------------------------- */
415     case 't':                   /* tiles */
416       sscanf(optarg, "%d,%d", &cp.tdx, &cp.tdy);
417       Tile_arg = 1;
418       break;
419       /* ----------------------------------------------------- */
420     case 'n':                   /* resolution */
421       sscanf(optarg, "%d", &NumResolution);
422       break;
423       /* ----------------------------------------------------- */
424     case 'c':                   /* precinct dimension */
425       s = optarg;
426       do {
427         sep = 0;
428         sscanf(s, "[%d,%d]%c", &prcw_init[res_spec],
429                &prch_init[res_spec], &sep);
430         CSty |= 0x01;
431         res_spec++;
432         s = strpbrk(s, "]") + 2;
433       } while (sep == ',');
434       break;
435       /* ----------------------------------------------------- */
436     case 'b':                   /* code-block dimension */
437       sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
438       if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
439           || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
440         fprintf(stderr,
441                 "!! Size of code_block error (option -b) !!\n\nRestriction :\n    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
442         return 1;
443       }
444       break;
445       /* ----------------------------------------------------- */
446     case 'x':                   /* creation of index file */
447       index = optarg;
448       img.index_on = 1;
449       break;
450       /* ----------------------------------------------------- */
451     case 'p':                   /* progression order */
452       s = optarg;
453       for (i = 0; i < 4; i++) {
454         progression[i] = *s;
455         s++;
456       }
457       Prog_order = give_progression(progression);
458
459       if (Prog_order == -1) {
460         fprintf(stderr,
461                 "Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
462         return 1;
463       }
464       break;
465       /* ----------------------------------------------------- */
466     case 's':                   /* subsampling factor */
467       if (sscanf(optarg, "%d,%d", &subsampling_dx, &subsampling_dy)
468           != 2) {
469         fprintf(stderr,
470                 "'-s' sub-sampling argument error !  [-s dx,dy]\n");
471         return 1;
472       }
473       break;
474       /* ----------------------------------------------------- */
475     case 'd':                   /* coordonnate of the reference grid */
476       if (sscanf(optarg, "%d,%d", &Dim[0], &Dim[1]) != 2) {
477         fprintf(stderr,
478                 "-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
479         return 1;
480       }
481       break;
482       /* ----------------------------------------------------- */
483     case 'h':                   /* Display an help description */
484       help_display();
485       return 0;
486       break;
487       /* ----------------------------------------------------- */
488     case 'P':                   /* POC */
489       fprintf(stderr, "/----------------------------------\\\n");
490       fprintf(stderr, "|  POC option not fully tested !!  |\n");
491       fprintf(stderr, "\\----------------------------------/\n");
492
493       s = optarg;
494       while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
495                     &POC[numpocs].resno0, &POC[numpocs].compno0,
496                     &POC[numpocs].layno1, &POC[numpocs].resno1,
497                     &POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
498         POC[numpocs].prg = give_progression(POC[numpocs].progorder);
499         /* POC[numpocs].tile; */
500         numpocs++;
501         while (*s && *s != '/') {
502           s++;
503         }
504         if (!*s)
505           break;
506         s++;
507       }
508       break;
509       /* ------------------------------------------------------ */
510     case 'S':                   /* SOP marker */
511       CSty |= 0x02;
512       break;
513       /* ------------------------------------------------------ */
514     case 'E':                   /* EPH marker */
515       CSty |= 0x04;
516       break;
517       /* ------------------------------------------------------ */
518     case 'M':                   /* Mode switch pas tous au point !! */
519       if (sscanf(optarg, "%d", &value) == 1) {
520         for (i = 0; i <= 5; i++) {
521           int cache = value & (1 << i);
522           if (cache)
523             mode |= (1 << i);
524         }
525       }
526       break;
527       /* ------------------------------------------------------ */
528     case 'R':                   /* ROI */
529       if (sscanf(optarg, "OI:c=%d,U=%d", &ROI_compno, &ROI_shift) != 2) {
530         fprintf(stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
531         return 1;
532       }
533       break;
534       /* ------------------------------------------------------ */
535     case 'T':                   /* Tile offset */
536       if (sscanf(optarg, "%d,%d", &TX0, &TY0) != 2) {
537         fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
538         return 1;
539       }
540       break;
541       /* ------------------------------------------------------ */
542     case 'C':                   /* Add a comment */
543       cp.comment = optarg;
544       break;
545       /* ------------------------------------------------------ */
546     case 'I':                   /* reversible or not */
547       ir = 1;
548       break;
549       /* ------------------------------------------------------ */
550     default:
551       return 1;
552     }
553   }
554
555   cp.tx0 = TX0;
556   cp.ty0 = TY0;
557
558   /* Error messages */
559   /* -------------- */
560   if (!infile || !outfile) {
561     fprintf(stderr,
562             "usage: image_to_j2k -i image-file -o j2k-file (+ options)\n");
563     return 1;
564   }
565
566   if (cp.disto_alloc & cp.fixed_alloc) {
567     fprintf(stderr,
568             "Error: option -r and -q can not be used together !!\n");
569     return 1;
570   }
571
572   /* if no rate entered, lossless by default */
573   if (tcp_init->numlayers == 0) {
574     tcp_init->rates[tcp_init->numlayers] = 1;
575     tcp_init->numlayers++;
576     cp.disto_alloc = 1;
577   }
578
579   if (TX0 > Dim[0] || TY0 > Dim[1]) {
580     fprintf(stderr,
581             "Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
582             TX0, Dim[0], TY0, Dim[1]);
583     return 1;
584   }
585
586   for (i = 0; i < numpocs; i++) {
587     if (POC[i].prg == -1) {
588       fprintf(stderr,
589               "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
590               i + 1);
591     }
592   }
593
594   switch (cp.image_type) {
595   case 0:
596     if (Tile_arg) {
597       if (!pgxtoimage
598           (infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim,
599            cp)) {
600         fprintf(stderr, "not a pgx file\n");
601         return 1;
602       }
603     } else {
604       if (!pgxtoimage
605           (infile, &img, -1, subsampling_dx, subsampling_dy, Dim, cp)) {
606         fprintf(stderr, " not a pgx file\n");
607         return 1;
608       }
609     }
610     break;
611
612   case 1:
613     if (!pnmtoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
614       fprintf(stderr, " not a pnm file\n");
615       return 1;
616     }
617     break;
618
619   case 2:
620     if (!bmptoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
621       fprintf(stderr, " not a bmp file\n");
622       return 1;
623     }
624     break;
625   }
626   /* to respect profile - 0 */
627   /* ---------------------- */
628   numD_min = 0;
629   /*   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++;
630      if ((numD_min+1)>NumResolution)
631      {
632      fprintf(stderr,"\n********************************************************************************\n\n");
633      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);
634      fprintf(stderr,  "********************************************************************************\n\n");
635      NumResolution=numD_min+1;
636      } */
637
638   if (Tile_arg == 1) {
639     cp.tw = int_ceildiv(img.x1 - cp.tx0, cp.tdx);
640     cp.th = int_ceildiv(img.y1 - cp.ty0, cp.tdy);
641   } else {
642     cp.tdx = img.x1 - cp.tx0;
643     cp.tdy = img.y1 - cp.ty0;
644   }
645
646   /* Initialization for PPM marker */
647   cp.ppm = 0;
648   cp.ppm_data = NULL;
649   cp.ppm_previous = 0;
650   cp.ppm_store = 0;
651
652   /* Init the mutiple tiles */
653   /* ---------------------- */
654   cp.tcps = (j2k_tcp_t *) malloc(cp.tw * cp.th * sizeof(j2k_tcp_t));
655
656   for (tileno = 0; tileno < cp.tw * cp.th; tileno++) {
657     tcp = &cp.tcps[tileno];
658     tcp->numlayers = tcp_init->numlayers;
659     for (j = 0; j < tcp->numlayers; j++) {
660       tcp->rates[j] = tcp_init->rates[j];
661     }
662     tcp->csty = CSty;
663     tcp->prg = Prog_order;
664     tcp->mct = img.numcomps == 3 ? 1 : 0;
665     tcp->ppt = 0;
666     tcp->ppt_data = NULL;
667     tcp->ppt_store = 0;
668
669     numpocs_tile = 0;
670     tcp->POC = 0;
671     if (numpocs) {
672       /* intialisation of POC */
673       tcp->POC = 1;
674       for (i = 0; i < numpocs; i++) {
675         if (tileno == POC[i].tile - 1 || POC[i].tile == -1) {
676           tcp_poc = &tcp->pocs[numpocs_tile];
677           tcp_poc->resno0 = POC[numpocs_tile].resno0;
678           tcp_poc->compno0 = POC[numpocs_tile].compno0;
679           tcp_poc->layno1 = POC[numpocs_tile].layno1;
680           tcp_poc->resno1 = POC[numpocs_tile].resno1;
681           tcp_poc->compno1 = POC[numpocs_tile].compno1;
682           tcp_poc->prg = POC[numpocs_tile].prg;
683           tcp_poc->tile = POC[numpocs_tile].tile;
684           numpocs_tile++;
685         }
686       }
687     }
688     tcp->numpocs = numpocs_tile;
689     tcp->tccps = (j2k_tccp_t *) malloc(img.numcomps * sizeof(j2k_tccp_t));
690
691     for (i = 0; i < img.numcomps; i++) {
692       tccp = &tcp->tccps[i];
693       tccp->csty = CSty & 0x01; /* 0 => one precinct || 1 => custom precinct  */
694       tccp->numresolutions = NumResolution;
695       tccp->cblkw = int_floorlog2(cblockw_init);
696       tccp->cblkh = int_floorlog2(cblockh_init);
697       tccp->cblksty = mode;
698       tccp->qmfbid = ir ? 0 : 1;
699       tccp->qntsty = ir ? J2K_CCP_QNTSTY_SEQNT : J2K_CCP_QNTSTY_NOQNT;
700       tccp->numgbits = 2;
701       if (i == ROI_compno)
702         tccp->roishift = ROI_shift;
703       else
704         tccp->roishift = 0;
705       if (CSty & J2K_CCP_CSTY_PRT) {
706         int p = 0;
707         for (j = tccp->numresolutions - 1; j >= 0; j--) {
708           if (p < res_spec) {
709             if (prcw_init[p] < 1)
710               tccp->prcw[j] = 1;
711             else
712               tccp->prcw[j] = int_floorlog2(prcw_init[p]);
713
714             if (prch_init[p] < 1)
715               tccp->prch[j] = 1;
716             else
717               tccp->prch[j] = int_floorlog2(prch_init[p]);
718           } else {
719             int size_prcw, size_prch;
720             size_prcw = prcw_init[res_spec - 1] >> (p - (res_spec - 1));
721             size_prch = prch_init[res_spec - 1] >> (p - (res_spec - 1));
722             if (size_prcw < 1)
723               tccp->prcw[j] = 1;
724             else
725               tccp->prcw[j] = int_floorlog2(size_prcw);
726             if (size_prch < 1)
727               tccp->prch[j] = 1;
728             else
729               tccp->prch[j] = int_floorlog2(size_prch);
730           }
731           p++;
732           /*printf("\nsize precinct pour level %d : %d,%d\n", j,
733                  tccp->prcw[j], tccp->prch[j]);*/
734         }
735       } else {
736         for (j = 0; j < tccp->numresolutions; j++) {
737           tccp->prcw[j] = 15;
738           tccp->prch[j] = 15;
739         }
740       }
741       calc_explicit_stepsizes(tccp, img.comps[i].prec);
742     }
743   }
744
745   len = j2k_encode(&img, &cp, outfile, cp.tdx * cp.tdy * 2, index);
746   if (len == 0) {
747     fprintf(stderr, "failed to encode image\n");
748     return 1;
749   }
750
751   /* Remove the temporary files */
752   /* -------------------------- */
753   if (cp.image_type) {          /* PNM PGM PPM */
754     for (i = 0; i < img.numcomps; i++) {
755       char tmp;
756       sprintf(&tmp, "Compo%d", i);
757       if (remove(&tmp) == -1) {
758         fprintf(stderr, "failed to kill %s file !\n", &tmp);
759       }
760     }
761   } else {                      /* PGX */
762     for (i = 0; i < cp.th; i++) {
763       char tmp;
764       sprintf(&tmp, "bandtile%d", i + 1);
765
766       if (remove(&tmp) == -1) {
767         fprintf(stderr, "failed to kill %s file !\n", &tmp);
768       }
769     }
770   }
771
772   return 0;
773 }