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