Reformatage : indent -kr -i2 -ci2 $(find . -name '*.c') $(find . -name '*.h')
[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, prch_init;     /*   Initialisation precincts' size                           */
257   int cblockw_init, cblockh_init;       /*   Initialisation codeblocks' size                          */
258   int mode, value;              /*   Mode switch (cblk_style)                                 */
259   int subsampling_dx, subsampling_dy;   /* subsampling value for dx and dy                    */
260   int ROI_compno, ROI_shift;    /*   region of interrest                                      */
261   int Dim[2];                   /*   portion of the image coded                               */
262   int TX0, TY0;                 /*   tile off-set                                             */
263   j2k_image_t img;
264   j2k_cp_t cp, cp_init;         /*   cp_init is used to initialise in multiple tiles          */
265   j2k_tcp_t *tcp, *tcp_init;    /*   tcp_init is used to initialise in multiple tile          */
266   j2k_poc_t POC[32];            /*   POC : used in case of Progression order change           */
267   j2k_poc_t *tcp_poc;
268   j2k_tccp_t *tccp;
269   int i, tileno, j;
270   char *infile = 0;
271   char *outfile = 0;
272   char *index = 0;
273   char *s, S1, S2, S3;
274   int ir = 0;
275
276   /* default value */
277   /* ------------- */
278   NumResolution = 6;
279   CSty = 0;
280   cblockw_init = 64;
281   cblockh_init = 64;
282   cp.tw = 1;
283   cp.th = 1;
284   img.index_on = 0;
285   Prog_order = 0;
286   numpocs = 0;
287   mode = 0;
288   subsampling_dx = 1;
289   subsampling_dy = 1;
290   ROI_compno = -1;              /* no ROI */
291   ROI_shift = 0;
292   Dim[0] = 0;
293   Dim[1] = 0;
294   TX0 = 0;
295   TY0 = 0;
296   cp.comment = NULL;
297   cp.disto_alloc = 0;
298   cp.fixed_alloc = 0;
299   /* img.PPT=0; */
300
301   Tile_arg = 0;
302   cp_init.tcps = (j2k_tcp_t *) malloc(sizeof(j2k_tcp_t));       /* initialisation if only one tile */
303   tcp_init = &cp_init.tcps[0];
304   tcp_init->numlayers = 0;
305
306   while (1) {
307     int c = getopt(argc, argv,
308                    "i:o:r:q:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I");
309     if (c == -1)
310       break;
311     switch (c) {
312     case 'i':                   /* IN fill */
313       infile = optarg;
314       s = optarg;
315       while (*s) {
316         s++;
317       }
318       s--;
319       S3 = *s;
320       s--;
321       S2 = *s;
322       s--;
323       S1 = *s;
324
325       if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
326           || (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
327         cp.image_type = 0;
328         break;
329       }
330
331       if ((S1 == 'p' && S2 == 'n' && S3 == 'm')
332           || (S1 == 'P' && S2 == 'N' && S3 == 'M')
333           || (S1 == 'p' && S2 == 'g' && S3 == 'm') || (S1 == 'P'
334                                                        && S2 == 'G'
335                                                        && S3 == 'M')
336           || (S1 == 'P' && S2 == 'P' && S3 == 'M') || (S1 == 'p'
337                                                        && S2 == 'p'
338                                                        && S3 == 'm')) {
339         cp.image_type = 1;
340         break;
341       }
342
343       if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
344           || (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
345         cp.image_type = 2;
346         break;
347       }
348       fprintf(stderr,
349               "!! Unrecognized format for infile : %c%c%c [accept only *.pnm, *.pgm, *.ppm, *.pgx or *.bmp] !!\n\n",
350               S1, S2, S3);
351       return 1;
352       break;
353       /* ----------------------------------------------------- */
354     case 'o':                   /* OUT fill */
355       outfile = optarg;
356       break;
357       /* ----------------------------------------------------- */
358     case 'r':                   /* rates rates/distorsion */
359       s = optarg;
360       while (sscanf(s, "%d", &tcp_init->rates[tcp_init->numlayers])
361              == 1) {
362         tcp_init->numlayers++;
363         while (*s && *s != ',') {
364           s++;
365         }
366         if (!*s)
367           break;
368         s++;
369       }
370       cp.disto_alloc = 1;
371       cp.matrice = NULL;
372       break;
373       /* ----------------------------------------------------- */
374     case 'q':                   /* rates fixed */
375       s = optarg;
376       sscanf(s, "%d", &tcp_init->numlayers);
377       s++;
378       if (tcp_init->numlayers > 9)
379         s++;
380       cp.matrice =
381         (int *) malloc(tcp_init->numlayers * NumResolution * 3 *
382                        sizeof(int));
383       s = s + 2;
384       for (i = 0; i < tcp_init->numlayers; i++) {
385         tcp_init->rates[i] = 1;
386         sscanf(s, "%d,", &cp.matrice[i * NumResolution * 3]);
387         s += 2;
388         if (cp.matrice[i * NumResolution * 3] > 9)
389           s++;
390         cp.matrice[i * NumResolution * 3 + 1] = 0;
391         cp.matrice[i * NumResolution * 3 + 2] = 0;
392         for (j = 1; j < NumResolution; j++) {
393           sscanf(s, "%d,%d,%d",
394                  &cp.matrice[i * NumResolution * 3 + j * 3 + 0],
395                  &cp.matrice[i * NumResolution * 3 + j * 3 + 1],
396                  &cp.matrice[i * NumResolution * 3 + j * 3 + 2]);
397           s += 6;
398           if (cp.matrice[i * NumResolution * 3 + j * 3] > 9)
399             s++;
400           if (cp.matrice[i * NumResolution * 3 + j * 3 + 1] > 9)
401             s++;
402           if (cp.matrice[i * NumResolution * 3 + j * 3 + 2] > 9)
403             s++;
404         }
405         if (i < tcp_init->numlayers - 1)
406           s++;
407       }
408       cp.fixed_alloc = 1;
409       break;
410       /* ----------------------------------------------------- */
411     case 't':                   /* tiles */
412       sscanf(optarg, "%d,%d", &cp.tdx, &cp.tdy);
413       Tile_arg = 1;
414       break;
415       /* ----------------------------------------------------- */
416     case 'n':                   /* resolution */
417       sscanf(optarg, "%d", &NumResolution);
418       break;
419       /* ----------------------------------------------------- */
420     case 'c':                   /* precinct dimension */
421       sscanf(optarg, "%d,%d", &prcw_init, &prch_init);
422       CSty |= 0x01;
423       break;
424       /* ----------------------------------------------------- */
425     case 'b':                   /* code-block dimension */
426       sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
427       if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
428           || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
429         fprintf(stderr,
430                 "!! Size of code_block error (option -b) !!\n\nRestriction :\n    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
431         return 1;
432       }
433       break;
434       /* ----------------------------------------------------- */
435     case 'x':                   /* creation of index file */
436       index = optarg;
437       img.index_on = 1;
438       break;
439       /* ----------------------------------------------------- */
440     case 'p':                   /* progression order */
441       s = optarg;
442       for (i = 0; i < 4; i++) {
443         progression[i] = *s;
444         s++;
445       }
446       Prog_order = give_progression(progression);
447
448       if (Prog_order == -1) {
449         fprintf(stderr,
450                 "Unrecognized progression order [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
451         return 1;
452       }
453       break;
454       /* ----------------------------------------------------- */
455     case 's':                   /* subsampling factor */
456       if (sscanf(optarg, "%d,%d", &subsampling_dx, &subsampling_dy)
457           != 2) {
458         fprintf(stderr,
459                 "'-s' sub-sampling argument error !  [-s dx,dy]\n");
460         return 1;
461       }
462       break;
463       /* ----------------------------------------------------- */
464     case 'd':                   /* coordonnate of the reference grid */
465       if (sscanf(optarg, "%d,%d", &Dim[0], &Dim[1]) != 2) {
466         fprintf(stderr,
467                 "-d 'coordonnate of the reference grid' argument error !! [-d x0,y0]\n");
468         return 1;
469       }
470       break;
471       /* ----------------------------------------------------- */
472     case 'h':                   /* Display an help description */
473       help_display();
474       return 0;
475       break;
476       /* ----------------------------------------------------- */
477     case 'P':                   /* POC */
478       fprintf(stderr, "/----------------------------------\\\n");
479       fprintf(stderr, "|  POC option not fully tested !!  |\n");
480       fprintf(stderr, "\\----------------------------------/\n");
481
482       s = optarg;
483       while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%s", &POC[numpocs].tile,
484                     &POC[numpocs].resno0, &POC[numpocs].compno0,
485                     &POC[numpocs].layno1, &POC[numpocs].resno1,
486                     &POC[numpocs].compno1, POC[numpocs].progorder) == 7) {
487         POC[numpocs].prg = give_progression(POC[numpocs].progorder);
488         /* POC[numpocs].tile; */
489         numpocs++;
490         while (*s && *s != '/') {
491           s++;
492         }
493         if (!*s)
494           break;
495         s++;
496       }
497       break;
498       /* ------------------------------------------------------ */
499     case 'S':                   /* SOP marker */
500       CSty |= 0x02;
501       break;
502       /* ------------------------------------------------------ */
503     case 'E':                   /* EPH marker */
504       CSty |= 0x04;
505       break;
506       /* ------------------------------------------------------ */
507     case 'M':                   /* Mode switch pas tous au point !! */
508       if (sscanf(optarg, "%d", &value) == 1) {
509         for (i = 0; i <= 5; i++) {
510           int cache = value & (1 << i);
511           if (cache)
512             mode |= (1 << i);
513         }
514       }
515       break;
516       /* ------------------------------------------------------ */
517     case 'R':                   /* ROI */
518       if (sscanf(optarg, "OI:c=%d,U=%d", &ROI_compno, &ROI_shift) != 2) {
519         fprintf(stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
520         return 1;
521       }
522       break;
523       /* ------------------------------------------------------ */
524     case 'T':                   /* Tile offset */
525       if (sscanf(optarg, "%d,%d", &TX0, &TY0) != 2) {
526         fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
527         return 1;
528       }
529       break;
530       /* ------------------------------------------------------ */
531     case 'C':                   /* Add a comment */
532       cp.comment = optarg;
533       break;
534       /* ------------------------------------------------------ */
535     case 'I':                   /* reversible or not */
536       ir = 1;
537       break;
538       /* ------------------------------------------------------ */
539     default:
540       return 1;
541     }
542   }
543
544   cp.tx0 = TX0;
545   cp.ty0 = TY0;
546
547   /* Error messages */
548   /* -------------- */
549   if (!infile || !outfile) {
550     fprintf(stderr,
551             "usage: image_to_j2k -i image-file -o j2k-file (+ options)\n");
552     return 1;
553   }
554
555   if (cp.disto_alloc & cp.fixed_alloc) {
556     fprintf(stderr,
557             "Error: option -r and -q can not be used together !!\n");
558     return 1;
559   }
560
561   /* if no rate entered, lossless by default */
562   if (tcp_init->numlayers == 0) {
563     tcp_init->rates[tcp_init->numlayers] = 1;
564     tcp_init->numlayers++;
565     cp.disto_alloc = 1;
566   }
567
568   if (TX0 > Dim[0] || TY0 > Dim[1]) {
569     fprintf(stderr,
570             "Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
571             TX0, Dim[0], TY0, Dim[1]);
572     return 1;
573   }
574
575   for (i = 0; i < numpocs; i++) {
576     if (POC[i].prg == -1) {
577       fprintf(stderr,
578               "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
579               i + 1);
580     }
581   }
582
583   switch (cp.image_type) {
584   case 0:
585     if (Tile_arg) {
586       if (!pgxtoimage
587           (infile, &img, cp.tdy, subsampling_dx, subsampling_dy, Dim,
588            cp)) {
589         fprintf(stderr, "not a pgx file\n");
590         return 1;
591       }
592     } else {
593       if (!pgxtoimage
594           (infile, &img, -1, subsampling_dx, subsampling_dy, Dim, cp)) {
595         fprintf(stderr, " not a pgx file\n");
596         return 1;
597       }
598     }
599     break;
600
601   case 1:
602     if (!pnmtoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
603       fprintf(stderr, " not a pnm file\n");
604       return 1;
605     }
606     break;
607
608   case 2:
609     if (!bmptoimage(infile, &img, subsampling_dx, subsampling_dy, Dim)) {
610       fprintf(stderr, " not a bmp file\n");
611       return 1;
612     }
613     break;
614   }
615   /* to respect profile - 0 */
616   /* ---------------------- */
617   numD_min = 0;
618   /*   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++;
619      if ((numD_min+1)>NumResolution)
620      {
621      fprintf(stderr,"\n********************************************************************************\n\n");
622      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);
623      fprintf(stderr,  "********************************************************************************\n\n");
624      NumResolution=numD_min+1;
625      } */
626
627   if (Tile_arg == 1) {
628     cp.tw = int_ceildiv(img.x1 - cp.tx0, cp.tdx);
629     cp.th = int_ceildiv(img.y1 - cp.ty0, cp.tdy);
630   } else {
631     cp.tdx = img.x1 - cp.tx0;
632     cp.tdy = img.y1 - cp.ty0;
633   }
634
635   /* Initialization for PPM marker */
636   cp.ppm = 0;
637   cp.ppm_data = NULL;
638   cp.ppm_previous = 0;
639   cp.ppm_store = 0;
640
641   /* Init the mutiple tiles */
642   /* ---------------------- */
643   cp.tcps = (j2k_tcp_t *) malloc(cp.tw * cp.th * sizeof(j2k_tcp_t));
644
645   for (tileno = 0; tileno < cp.tw * cp.th; tileno++) {
646     tcp = &cp.tcps[tileno];
647     tcp->numlayers = tcp_init->numlayers;
648     for (j = 0; j < tcp->numlayers; j++) {
649       tcp->rates[j] = tcp_init->rates[j];
650     }
651     tcp->csty = CSty;
652     tcp->prg = Prog_order;
653     tcp->mct = img.numcomps == 3 ? 1 : 0;
654     tcp->ppt = 0;
655     tcp->ppt_data = NULL;
656     tcp->ppt_store = 0;
657
658     numpocs_tile = 0;
659     tcp->POC = 0;
660     if (numpocs) {
661       /* intialisation of POC */
662       tcp->POC = 1;
663       for (i = 0; i < numpocs; i++) {
664         if (tileno == POC[i].tile - 1 || POC[i].tile == -1) {
665           tcp_poc = &tcp->pocs[numpocs_tile];
666           tcp_poc->resno0 = POC[numpocs_tile].resno0;
667           tcp_poc->compno0 = POC[numpocs_tile].compno0;
668           tcp_poc->layno1 = POC[numpocs_tile].layno1;
669           tcp_poc->resno1 = POC[numpocs_tile].resno1;
670           tcp_poc->compno1 = POC[numpocs_tile].compno1;
671           tcp_poc->prg = POC[numpocs_tile].prg;
672           tcp_poc->tile = POC[numpocs_tile].tile;
673           numpocs_tile++;
674         }
675       }
676     }
677     tcp->numpocs = numpocs_tile;
678     tcp->tccps = (j2k_tccp_t *) malloc(img.numcomps * sizeof(j2k_tccp_t));
679
680     for (i = 0; i < img.numcomps; i++) {
681       tccp = &tcp->tccps[i];
682       tccp->csty = CSty & 0x01; /* 0 => one precinct || 1 => custom precinct  */
683       tccp->numresolutions = NumResolution;
684       tccp->cblkw = int_floorlog2(cblockw_init);
685       tccp->cblkh = int_floorlog2(cblockh_init);
686       tccp->cblksty = mode;
687       tccp->qmfbid = ir ? 0 : 1;
688       tccp->qntsty = ir ? J2K_CCP_QNTSTY_SEQNT : J2K_CCP_QNTSTY_NOQNT;
689       tccp->numgbits = 2;
690       if (i == ROI_compno)
691         tccp->roishift = ROI_shift;
692       else
693         tccp->roishift = 0;
694       if (CSty & J2K_CCP_CSTY_PRT) {
695
696         for (j = 0; j < tccp->numresolutions; j++) {
697           int size_prcw, size_prch;
698           size_prcw = prcw_init >> (tccp->numresolutions - j - 1);
699           size_prch = prch_init >> (tccp->numresolutions - j - 1);
700           if (size_prcw < 1) {
701             tccp->prcw[j] = 1;
702           } else {
703             tccp->prcw[j] =
704               int_floorlog2(prcw_init >> (tccp->numresolutions - j - 1));
705           }
706           if (size_prch < 1) {
707             tccp->prch[j] = 1;
708           } else {
709             tccp->prch[j] =
710               int_floorlog2(prch_init >> (tccp->numresolutions - j - 1));
711           }
712         }
713       } else {
714         for (j = 0; j < tccp->numresolutions; j++) {
715           tccp->prcw[j] = 15;
716           tccp->prch[j] = 15;
717         }
718       }
719       calc_explicit_stepsizes(tccp, img.comps[i].prec);
720     }
721   }
722
723   len = j2k_encode(&img, &cp, outfile, cp.tdx * cp.tdy * 2, index);
724   if (len == 0) {
725     fprintf(stderr, "failed to encode image\n");
726     return 1;
727   }
728
729   /* Remove the temporary files */
730   /* -------------------------- */
731   if (cp.image_type) {          /* PNM PGM PPM */
732     for (i = 0; i < img.numcomps; i++) {
733       char tmp;
734       sprintf(&tmp, "Compo%d", i);
735       if (remove(&tmp) == -1) {
736         fprintf(stderr, "failed to kill %s file !\n", &tmp);
737       }
738     }
739   } else {                      /* PGX */
740     for (i = 0; i < cp.th; i++) {
741       char tmp;
742       sprintf(&tmp, "bandtile%d", i + 1);
743
744       if (remove(&tmp) == -1) {
745         fprintf(stderr, "failed to kill %s file !\n", &tmp);
746       }
747     }
748   }
749
750   return 0;
751 }