One more field in the codestream_info struct for recording the number of packets...
[openjpeg.git] / codec / image_to_j2k.c
1 /*
2  * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
3  * Copyright (c) 2002-2007, Professor Benoit Macq
4  * Copyright (c) 2001-2003, David Janssens
5  * Copyright (c) 2002-2003, Yannick Verschueren
6  * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
7  * Copyright (c) 2005, Herve Drolon, FreeImage Team 
8  * Copyright (c) 2006-2007, Parvatha Elangovan
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 #include <stdio.h>
33 #include <string.h>
34 #include <stdlib.h>
35 #include <math.h>
36
37 #include "openjpeg.h"
38 #include "compat/getopt.h"
39 #include "convert.h"
40 #include "dirent.h"
41
42 #ifndef WIN32
43 #define stricmp strcasecmp
44 #define strnicmp strncasecmp
45 #endif
46
47 /* ----------------------------------------------------------------------- */
48
49 #define J2K_CFMT 0
50 #define JP2_CFMT 1
51 #define JPT_CFMT 2
52
53 #define PXM_DFMT 10
54 #define PGX_DFMT 11
55 #define BMP_DFMT 12
56 #define YUV_DFMT 13
57 #define TIF_DFMT 14
58 #define RAW_DFMT 15
59 #define TGA_DFMT 16
60
61 /* ----------------------------------------------------------------------- */
62 #define CINEMA_24_CS 1302083    /*Codestream length for 24fps*/
63 #define CINEMA_48_CS 651041             /*Codestream length for 48fps*/
64 #define COMP_24_CS 1041666              /*Maximum size per color component for 2K & 4K @ 24fps*/
65 #define COMP_48_CS 520833               /*Maximum size per color component for 2K @ 48fps*/
66
67 typedef struct dircnt{
68         /** Buffer for holding images read from Directory*/
69         char *filename_buf;
70         /** Pointer to the buffer*/
71         char **filename;
72 }dircnt_t;
73
74 typedef struct img_folder{
75         /** The directory path of the folder containing input images*/
76         char *imgdirpath;
77         /** Output format*/
78         char *out_format;
79         /** Enable option*/
80         char set_imgdir;
81         /** Enable Cod Format for output*/
82         char set_out_format;
83 }img_fol_t;
84
85 void encode_help_display() {
86         fprintf(stdout,"HELP\n----\n\n");
87         fprintf(stdout,"- the -h option displays this help information on screen\n\n");
88
89 /* UniPG>> */
90         fprintf(stdout,"List of parameters for the JPEG 2000 "
91 #ifdef USE_JPWL
92                 "+ JPWL "
93 #endif /* USE_JPWL */
94                 "encoder:\n");
95 /* <<UniPG */
96         fprintf(stdout,"\n");
97         fprintf(stdout,"REMARKS:\n");
98         fprintf(stdout,"---------\n");
99         fprintf(stdout,"\n");
100         fprintf(stdout,"The markers written to the main_header are : SOC SIZ COD QCD COM.\n");
101         fprintf(stdout,"COD and QCD never appear in the tile_header.\n");
102         fprintf(stdout,"\n");
103         fprintf(stdout,"By default:\n");
104         fprintf(stdout,"------------\n");
105         fprintf(stdout,"\n");
106         fprintf(stdout," * Lossless\n");
107         fprintf(stdout," * 1 tile\n");
108         fprintf(stdout," * Size of precinct : 2^15 x 2^15 (means 1 precinct)\n");
109         fprintf(stdout," * Size of code-block : 64 x 64\n");
110         fprintf(stdout," * Number of resolutions: 6\n");
111         fprintf(stdout," * No SOP marker in the codestream\n");
112         fprintf(stdout," * No EPH marker in the codestream\n");
113         fprintf(stdout," * No sub-sampling in x or y direction\n");
114         fprintf(stdout," * No mode switch activated\n");
115         fprintf(stdout," * Progression order: LRCP\n");
116         fprintf(stdout," * No index file\n");
117         fprintf(stdout," * No ROI upshifted\n");
118         fprintf(stdout," * No offset of the origin of the image\n");
119         fprintf(stdout," * No offset of the origin of the tiles\n");
120         fprintf(stdout," * Reversible DWT 5-3\n");
121 /* UniPG>> */
122 #ifdef USE_JPWL
123         fprintf(stdout," * No JPWL protection\n");
124 #endif /* USE_JPWL */
125 /* <<UniPG */
126         fprintf(stdout,"\n");
127         fprintf(stdout,"Parameters:\n");
128         fprintf(stdout,"------------\n");
129         fprintf(stdout,"\n");
130         fprintf(stdout,"Required Parameters (except with -h):\n");
131         fprintf(stdout,"One of the two options -ImgDir or -i must be used\n");
132         fprintf(stdout,"\n");
133         fprintf(stdout,"-ImgDir      : Image file Directory path (example ../Images) \n");
134         fprintf(stdout,"    When using this option -OutFor must be used\n");
135         fprintf(stdout,"\n");
136         fprintf(stdout,"-OutFor \n");
137         fprintf(stdout,"    REQUIRED only if -ImgDir is used\n");
138         fprintf(stdout,"          Need to specify only format without filename <BMP>  \n");
139         fprintf(stdout,"    Currently accepts PGM, PPM, PNM, PGX, BMP, TIF, RAW and TGA formats\n");
140         fprintf(stdout,"\n");
141         fprintf(stdout,"-i           : source file  (-i source.pnm also *.pgm, *.ppm, *.bmp, *.tif, *.raw, *.tga) \n");
142         fprintf(stdout,"    When using this option -o must be used\n");
143         fprintf(stdout,"\n");
144         fprintf(stdout,"-o           : destination file (-o dest.j2k or .jp2) \n");
145         fprintf(stdout,"\n");
146         fprintf(stdout,"Optional Parameters:\n");
147         fprintf(stdout,"\n");
148         fprintf(stdout,"-h           : display the help information \n ");
149         fprintf(stdout,"\n");
150         fprintf(stdout,"-cinema2K    : Digital Cinema 2K profile compliant codestream for 2K resolution.(-cinema2k 24 or 48) \n");
151   fprintf(stdout,"        Need to specify the frames per second for a 2K resolution. Only 24 or 48 fps is allowed\n"); 
152         fprintf(stdout,"\n");
153         fprintf(stdout,"-cinema4K    : Digital Cinema 4K profile compliant codestream for 4K resolution \n");
154         fprintf(stdout,"          Frames per second not required. Default value is 24fps\n"); 
155         fprintf(stdout,"\n");
156         fprintf(stdout,"-r           : different compression ratios for successive layers (-r 20,10,5)\n ");
157         fprintf(stdout,"                 - The rate specified for each quality level is the desired \n");
158         fprintf(stdout,"                   compression factor.\n");
159         fprintf(stdout,"                   Example: -r 20,10,1 means quality 1: compress 20x, \n");
160         fprintf(stdout,"                     quality 2: compress 10x and quality 3: compress lossless\n");
161         fprintf(stdout,"\n");
162         fprintf(stdout,"               (options -r and -q cannot be used together)\n ");
163         fprintf(stdout,"\n");
164
165         fprintf(stdout,"-q           : different psnr for successive layers (-q 30,40,50) \n ");
166
167         fprintf(stdout,"               (options -r and -q cannot be used together)\n ");
168
169         fprintf(stdout,"\n");
170         fprintf(stdout,"-n           : number of resolutions (-n 3) \n");
171         fprintf(stdout,"\n");
172         fprintf(stdout,"-b           : size of code block (-b 32,32) \n");
173         fprintf(stdout,"\n");
174         fprintf(stdout,"-c           : size of precinct (-c 128,128) \n");
175         fprintf(stdout,"\n");
176         fprintf(stdout,"-t           : size of tile (-t 512,512) \n");
177         fprintf(stdout,"\n");
178         fprintf(stdout,"-p           : progression order (-p LRCP) [LRCP, RLCP, RPCL, PCRL, CPRL] \n");
179         fprintf(stdout,"\n");
180         fprintf(stdout,"-s           : subsampling factor (-s 2,2) [-s X,Y] \n");
181         fprintf(stdout,"             Remark: subsampling bigger than 2 can produce error\n");
182         fprintf(stdout,"\n");
183         fprintf(stdout,"-POC         : Progression order change (-POC T1=0,0,1,5,3,CPRL/T1=5,0,1,6,3,CPRL) \n");
184         fprintf(stdout,"      Example: T1=0,0,1,5,3,CPRL \n");
185         fprintf(stdout,"                         : Ttilenumber=Resolution num start,Component num start,Layer num end,Resolution num end,Component num end,Progression order\n");
186         fprintf(stdout,"\n");
187         fprintf(stdout,"-SOP         : write SOP marker before each packet \n");
188         fprintf(stdout,"\n");
189         fprintf(stdout,"-EPH         : write EPH marker after each header packet \n");
190         fprintf(stdout,"\n");
191         fprintf(stdout,"-M           : mode switch (-M 3) [1=BYPASS(LAZY) 2=RESET 4=RESTART(TERMALL)\n");
192         fprintf(stdout,"                 8=VSC 16=ERTERM(SEGTERM) 32=SEGMARK(SEGSYM)] \n");
193         fprintf(stdout,"                 Indicate multiple modes by adding their values. \n");
194         fprintf(stdout,"                 ex: RESTART(4) + RESET(2) + SEGMARK(32) = -M 38\n");
195         fprintf(stdout,"\n");
196         fprintf(stdout,"-x           : create an index file *.Idx (-x index_name.Idx) \n");
197         fprintf(stdout,"\n");
198         fprintf(stdout,"-ROI         : c=%%d,U=%%d : quantization indices upshifted \n");
199         fprintf(stdout,"               for component c=%%d [%%d = 0,1,2]\n");
200         fprintf(stdout,"               with a value of U=%%d [0 <= %%d <= 37] (i.e. -ROI:c=0,U=25) \n");
201         fprintf(stdout,"\n");
202         fprintf(stdout,"-d           : offset of the origin of the image (-d 150,300) \n");
203         fprintf(stdout,"\n");
204         fprintf(stdout,"-T           : offset of the origin of the tiles (-T 100,75) \n");
205         fprintf(stdout,"\n");
206         fprintf(stdout,"-I           : use the irreversible DWT 9-7 (-I) \n");
207         fprintf(stdout,"\n");
208 /* UniPG>> */
209 #ifdef USE_JPWL
210         fprintf(stdout,"-W           : adoption of JPWL (Part 11) capabilities (-W params)\n");
211         fprintf(stdout,"               The parameters can be written and repeated in any order:\n");
212         fprintf(stdout,"               [h<tilepart><=type>,s<tilepart><=method>,a=<addr>,...\n");
213         fprintf(stdout,"                ...,z=<size>,g=<range>,p<tilepart:pack><=type>]\n");
214         fprintf(stdout,"\n");
215         fprintf(stdout,"                 h selects the header error protection (EPB): 'type' can be\n");
216         fprintf(stdout,"                   [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
217         fprintf(stdout,"                   if 'tilepart' is absent, it is for main and tile headers\n");
218         fprintf(stdout,"                   if 'tilepart' is present, it applies from that tile\n");
219         fprintf(stdout,"                     onwards, up to the next h<> spec, or to the last tilepart\n");
220         fprintf(stdout,"                     in the codestream (max. %d specs)\n", JPWL_MAX_NO_TILESPECS);
221         fprintf(stdout,"\n");
222         fprintf(stdout,"                 p selects the packet error protection (EEP/UEP with EPBs)\n");
223         fprintf(stdout,"                  to be applied to raw data: 'type' can be\n");
224         fprintf(stdout,"                   [0=none 1,absent=predefined 16=CRC-16 32=CRC-32 37-128=RS]\n");
225         fprintf(stdout,"                   if 'tilepart:pack' is absent, it is from tile 0, packet 0\n");
226         fprintf(stdout,"                   if 'tilepart:pack' is present, it applies from that tile\n");
227         fprintf(stdout,"                     and that packet onwards, up to the next packet spec\n");
228         fprintf(stdout,"                     or to the last packet in the last tilepart in the stream\n");
229         fprintf(stdout,"                     (max. %d specs)\n", JPWL_MAX_NO_PACKSPECS);
230         fprintf(stdout,"\n");
231         fprintf(stdout,"                 s enables sensitivity data insertion (ESD): 'method' can be\n");
232         fprintf(stdout,"                   [-1=NO ESD 0=RELATIVE ERROR 1=MSE 2=MSE REDUCTION 3=PSNR\n");
233         fprintf(stdout,"                    4=PSNR INCREMENT 5=MAXERR 6=TSE 7=RESERVED]\n");
234         fprintf(stdout,"                   if 'tilepart' is absent, it is for main header only\n");
235         fprintf(stdout,"                   if 'tilepart' is present, it applies from that tile\n");
236         fprintf(stdout,"                     onwards, up to the next s<> spec, or to the last tilepart\n");
237         fprintf(stdout,"                     in the codestream (max. %d specs)\n", JPWL_MAX_NO_TILESPECS);
238         fprintf(stdout,"\n");
239         fprintf(stdout,"                 g determines the addressing mode: <range> can be\n");
240         fprintf(stdout,"                   [0=PACKET 1=BYTE RANGE 2=PACKET RANGE]\n");
241         fprintf(stdout,"\n");
242         fprintf(stdout,"                 a determines the size of data addressing: <addr> can be\n");
243         fprintf(stdout,"                   2/4 bytes (small/large codestreams). If not set, auto-mode\n");
244         fprintf(stdout,"\n");
245         fprintf(stdout,"                 z determines the size of sensitivity values: <size> can be\n");
246         fprintf(stdout,"                   1/2 bytes, for the transformed pseudo-floating point value\n");
247         fprintf(stdout,"\n");
248         fprintf(stdout,"                 ex.:\n");
249         fprintf(stdout,"                   h,h0=64,h3=16,h5=32,p0=78,p0:24=56,p1,p3:0=0,p3:20=32,s=0,\n");
250         fprintf(stdout,"                     s0=6,s3=-1,a=0,g=1,z=1\n");
251         fprintf(stdout,"                 means\n");
252         fprintf(stdout,"                   predefined EPB in MH, rs(64,32) from TPH 0 to TPH 2,\n");
253         fprintf(stdout,"                   CRC-16 in TPH 3 and TPH 4, CRC-32 in remaining TPHs,\n");
254         fprintf(stdout,"                   UEP rs(78,32) for packets 0 to 23 of tile 0,\n");
255         fprintf(stdout,"                   UEP rs(56,32) for packs. 24 to the last of tilepart 0,\n");
256         fprintf(stdout,"                   UEP rs default for packets of tilepart 1,\n");
257         fprintf(stdout,"                   no UEP for packets 0 to 19 of tilepart 3,\n");
258         fprintf(stdout,"                   UEP CRC-32 for packs. 20 of tilepart 3 to last tilepart,\n");
259         fprintf(stdout,"                   relative sensitivity ESD for MH,\n");
260         fprintf(stdout,"                   TSE ESD from TPH 0 to TPH 2, byte range with automatic\n");
261         fprintf(stdout,"                   size of addresses and 1 byte for each sensitivity value\n");
262         fprintf(stdout,"\n");
263         fprintf(stdout,"                 ex.:\n");
264         fprintf(stdout,"                       h,s,p\n");
265         fprintf(stdout,"                 means\n");
266         fprintf(stdout,"                   default protection to headers (MH and TPHs) as well as\n");
267         fprintf(stdout,"                   data packets, one ESD in MH\n");
268         fprintf(stdout,"\n");
269         fprintf(stdout,"                 N.B.: use the following recommendations when specifying\n");
270         fprintf(stdout,"                       the JPWL parameters list\n");
271         fprintf(stdout,"                   - when you use UEP, always pair the 'p' option with 'h'\n");
272         fprintf(stdout,"                 \n");
273 #endif /* USE_JPWL */
274 /* <<UniPG */
275         fprintf(stdout,"IMPORTANT:\n");
276         fprintf(stdout,"-----------\n");
277         fprintf(stdout,"\n");
278         fprintf(stdout,"The index file has the structure below:\n");
279         fprintf(stdout,"---------------------------------------\n");
280         fprintf(stdout,"\n");
281         fprintf(stdout,"Image_height Image_width\n");
282         fprintf(stdout,"progression order\n");
283         fprintf(stdout,"Tiles_size_X Tiles_size_Y\n");
284         fprintf(stdout,"Tiles_nb_X Tiles_nb_Y\n");
285         fprintf(stdout,"Components_nb\n");
286         fprintf(stdout,"Layers_nb\n");
287         fprintf(stdout,"decomposition_levels\n");
288         fprintf(stdout,"[Precincts_size_X_res_Nr Precincts_size_Y_res_Nr]...\n");
289         fprintf(stdout,"   [Precincts_size_X_res_0 Precincts_size_Y_res_0]\n");
290         fprintf(stdout,"Main_header_end_position\n");
291         fprintf(stdout,"Codestream_size\n");
292         fprintf(stdout,"Tile_0 start_pos end_Theader end_pos TotalDisto NumPix MaxMSE\n");
293         fprintf(stdout,"Tile_1   ''           ''        ''        ''       ''    ''\n");
294         fprintf(stdout,"...\n");
295         fprintf(stdout,"Tile_Nt   ''           ''        ''        ''       ''    ''\n");
296         fprintf(stdout,"Tpacket_0 Tile layer res. comp. prec. start_pos end_pos disto\n");
297         fprintf(stdout,"...\n");
298         fprintf(stdout,"Tpacket_Np ''   ''    ''   ''    ''       ''       ''     ''\n");
299
300         fprintf(stdout,"MaxDisto\n");
301
302         fprintf(stdout,"TotalDisto\n\n");
303 }
304
305 OPJ_PROG_ORDER give_progression(char progression[4]) {
306         if(strncmp(progression, "LRCP", 4) == 0) {
307                 return LRCP;
308         }
309         if(strncmp(progression, "RLCP", 4) == 0) {
310                 return RLCP;
311         }
312         if(strncmp(progression, "RPCL", 4) == 0) {
313                 return RPCL;
314         }
315         if(strncmp(progression, "PCRL", 4) == 0) {
316                 return PCRL;
317         }
318         if(strncmp(progression, "CPRL", 4) == 0) {
319                 return CPRL;
320         }
321
322         return PROG_UNKNOWN;
323 }
324
325 int get_num_images(char *imgdirpath){
326         DIR *dir;
327         struct dirent* content; 
328         int num_images = 0;
329
330         /*Reading the input images from given input directory*/
331
332         dir= opendir(imgdirpath);
333         if(!dir){
334                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
335                 return 0;
336         }
337
338         num_images=0;
339         while((content=readdir(dir))!=NULL){
340                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
341                         continue;
342                 num_images++;
343         }
344         return num_images;
345 }
346
347 int load_images(dircnt_t *dirptr, char *imgdirpath){
348         DIR *dir;
349         struct dirent* content; 
350         int i = 0;
351
352         /*Reading the input images from given input directory*/
353
354         dir= opendir(imgdirpath);
355         if(!dir){
356                 fprintf(stderr,"Could not open Folder %s\n",imgdirpath);
357                 return 1;
358         }else   {
359                 fprintf(stderr,"Folder opened successfully\n");
360         }
361
362         while((content=readdir(dir))!=NULL){
363                 if(strcmp(".",content->d_name)==0 || strcmp("..",content->d_name)==0 )
364                         continue;
365
366                 strcpy(dirptr->filename[i],content->d_name);
367                 i++;
368         }
369         return 0;       
370 }
371
372 int get_file_format(char *filename) {
373         unsigned int i;
374         static const char *extension[] = {
375     "pgx", "pnm", "pgm", "ppm", "bmp", "tif", "raw", "tga", "j2k", "jp2", "j2c"
376     };
377         static const int format[] = {
378     PGX_DFMT, PXM_DFMT, PXM_DFMT, PXM_DFMT, BMP_DFMT, TIF_DFMT, RAW_DFMT, TGA_DFMT, J2K_CFMT, JP2_CFMT, J2K_CFMT
379     };
380         char * ext = strrchr(filename, '.');
381         if (ext == NULL)
382                 return -1;
383         ext++;
384         for(i = 0; i < sizeof(format)/sizeof(*format); i++) {
385                 if(strnicmp(ext, extension[i], 3) == 0) {
386                         return format[i];
387                 }
388         }
389         return -1;
390 }
391
392 char * get_file_name(char *name){
393         char *fname;
394         fname= (char*)malloc(OPJ_PATH_LEN*sizeof(char));
395         fname= strtok(name,".");
396         return fname;
397 }
398
399 char get_next_file(int imageno,dircnt_t *dirptr,img_fol_t *img_fol, opj_cparameters_t *parameters){
400         char image_filename[OPJ_PATH_LEN], infilename[OPJ_PATH_LEN],outfilename[OPJ_PATH_LEN],temp_ofname[OPJ_PATH_LEN];
401   char *temp_p, temp1[OPJ_PATH_LEN]="";
402
403         strcpy(image_filename,dirptr->filename[imageno]);
404         fprintf(stderr,"File Number %d \"%s\"\n",imageno,image_filename);
405         parameters->decod_format = get_file_format(image_filename);
406         if (parameters->decod_format == -1)
407                 return 1;
408         sprintf(infilename,"%s/%s",img_fol->imgdirpath,image_filename);
409         strncpy(parameters->infile, infilename, sizeof(infilename));
410
411         //Set output file
412         strcpy(temp_ofname,get_file_name(image_filename));
413         while((temp_p = strtok(NULL,".")) != NULL){
414                 strcat(temp_ofname,temp1);
415                 sprintf(temp1,".%s",temp_p);
416         }
417         if(img_fol->set_out_format==1){
418                 sprintf(outfilename,"%s/%s.%s",img_fol->imgdirpath,temp_ofname,img_fol->out_format);
419                 strncpy(parameters->outfile, outfilename, sizeof(outfilename));
420         }
421  return 0;
422 }
423
424 static int initialise_4K_poc(opj_poc_t *POC, int numres){
425         POC[0].tile  = 1; 
426         POC[0].resno0  = 0; 
427         POC[0].compno0 = 0;
428         POC[0].layno1  = 1;
429         POC[0].resno1  = numres-1;
430         POC[0].compno1 = 3;
431         POC[0].prg1 = CPRL;
432         POC[1].tile  = 1;
433         POC[1].resno0  = numres-1; 
434         POC[1].compno0 = 0;
435         POC[1].layno1  = 1;
436         POC[1].resno1  = numres;
437         POC[1].compno1 = 3;
438         POC[1].prg1 = CPRL;
439         return 2;
440 }
441
442 void cinema_parameters(opj_cparameters_t *parameters){
443         parameters->tile_size_on = false;
444         parameters->cp_tdx=1;
445         parameters->cp_tdy=1;
446         
447         /*Tile part*/
448         parameters->tp_flag = 'C';
449         parameters->tp_on = 1;
450
451         /*Tile and Image shall be at (0,0)*/
452         parameters->cp_tx0 = 0;
453         parameters->cp_ty0 = 0;
454         parameters->image_offset_x0 = 0;
455         parameters->image_offset_y0 = 0;
456
457         /*Codeblock size= 32*32*/
458         parameters->cblockw_init = 32;  
459         parameters->cblockh_init = 32;
460         parameters->csty |= 0x01;
461
462         /*The progression order shall be CPRL*/
463         parameters->prog_order = CPRL;
464
465         /* No ROI */
466         parameters->roi_compno = -1;
467
468         parameters->subsampling_dx = 1;         parameters->subsampling_dy = 1;
469
470         /* 9-7 transform */
471         parameters->irreversible = 1;
472
473 }
474
475 void cinema_setup_encoder(opj_cparameters_t *parameters,opj_image_t *image){
476         int i;
477         float temp_rate;
478         opj_poc_t *POC = NULL;
479
480         switch (parameters->cp_cinema){
481         case CINEMA2K_24:
482         case CINEMA2K_48:
483                 if(parameters->numresolution > 6){
484                         parameters->numresolution = 6;
485                 }
486                 if (!((image->comps[0].w == 2048) | (image->comps[0].h == 1080))){
487                         fprintf(stdout,"Image coordinates %d x %d is not 2K compliant.\nJPEG Digital Cinema Profile-3 "
488                                 "(2K profile) compliance requires that at least one of coordinates match 2048 x 1080\n",
489                                 image->comps[0].w,image->comps[0].h);
490                         parameters->cp_rsiz = STD_RSIZ;
491                 }
492         break;
493         
494         case CINEMA4K_24:
495                 if(parameters->numresolution < 1){
496                                 parameters->numresolution = 1;
497                         }else if(parameters->numresolution > 7){
498                                 parameters->numresolution = 7;
499                         }
500                 if (!((image->comps[0].w == 4096) | (image->comps[0].h == 2160))){
501                         fprintf(stdout,"Image coordinates %d x %d is not 4K compliant.\nJPEG Digital Cinema Profile-4" 
502                                 "(4K profile) compliance requires that at least one of coordinates match 4096 x 2160\n",
503                                 image->comps[0].w,image->comps[0].h);
504                         parameters->cp_rsiz = STD_RSIZ;
505                 }
506                 parameters->numpocs = initialise_4K_poc(parameters->POC,parameters->numresolution);
507                 break;
508         }
509
510         switch (parameters->cp_cinema){
511                 case CINEMA2K_24:
512                 case CINEMA4K_24:
513                         for(i=0;i<parameters->tcp_numlayers;i++){
514                                 temp_rate = 0 ;
515                                 if (parameters->tcp_rates[i]== 0){
516                                         parameters->tcp_rates[0]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
517                                         (CINEMA_24_CS * 8 * image->comps[0].dx * image->comps[0].dy);
518                                 }else{
519                                         temp_rate =((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
520                                                 (parameters->tcp_rates[i] * 8 * image->comps[0].dx * image->comps[0].dy);
521                                         if (temp_rate > CINEMA_24_CS ){
522                                                 parameters->tcp_rates[i]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
523                                                                                                                                                                 (CINEMA_24_CS * 8 * image->comps[0].dx * image->comps[0].dy);
524                                         }
525                                 }
526                         }
527                         parameters->max_comp_size = COMP_24_CS;
528                         break;
529                 
530                 case CINEMA2K_48:
531         for(i=0;i<parameters->tcp_numlayers;i++){
532                                 temp_rate = 0 ;
533                                 if (parameters->tcp_rates[i]== 0){
534                                         parameters->tcp_rates[0]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
535                                         (CINEMA_48_CS * 8 * image->comps[0].dx * image->comps[0].dy);
536                                 }else{
537                                         temp_rate =((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
538                                                 (parameters->tcp_rates[i] * 8 * image->comps[0].dx * image->comps[0].dy);
539                                         if (temp_rate > CINEMA_48_CS ){
540                                                 parameters->tcp_rates[0]= ((float) (image->numcomps * image->comps[0].w * image->comps[0].h * image->comps[0].prec))/ 
541                                                                                                                                                                 (CINEMA_48_CS * 8 * image->comps[0].dx * image->comps[0].dy);
542                                         }
543                                 }
544                         }
545                         parameters->max_comp_size = COMP_48_CS;
546                         break;
547         }
548         parameters->cp_disto_alloc = 1;
549 }
550
551 /* ------------------------------------------------------------------------------------ */
552
553 /**
554 Create an index and write it to a file
555 @param cstr_info Codestream information 
556 @param index Index filename
557 @return Returns 0 if successful, returns 1 otherwise
558 */
559 int write_index_file(opj_codestream_info_t *cstr_info, char *index) {
560         int tileno, compno, layno, resno, precno, pack_nb, x, y;
561         FILE *stream = NULL;
562         double total_disto = 0;
563 /* UniPG>> */
564         int tilepartno;
565
566 #ifdef USE_JPWL
567         if (!strcmp(index, JPWL_PRIVATEINDEX_NAME))
568                 return 0;
569 #endif /* USE_JPWL */
570 /* <<UniPG */
571
572         if (!cstr_info)         
573                 return 1;
574
575         stream = fopen(index, "w");
576         if (!stream) {
577                 fprintf(stderr, "failed to open index file [%s] for writing\n", index);
578                 return 1;
579         }
580         
581         fprintf(stream, "%d %d\n", cstr_info->image_w, cstr_info->image_h);
582         fprintf(stream, "%d\n", cstr_info->prog);
583         fprintf(stream, "%d %d\n", cstr_info->tile_x, cstr_info->tile_y);
584         fprintf(stream, "%d %d\n", cstr_info->tw, cstr_info->th);
585         fprintf(stream, "%d\n", cstr_info->comp);
586         fprintf(stream, "%d\n", cstr_info->layer);
587         fprintf(stream, "%d\n", cstr_info->decomposition);
588         
589         for (resno = cstr_info->decomposition; resno >= 0; resno--) {
590                 fprintf(stream, "[%d,%d] ", 
591                         (1 << cstr_info->tile[0].pdx[resno]), (1 << cstr_info->tile[0].pdx[resno]));    /* based on tile 0 */
592         }
593         fprintf(stream, "\n");
594 /* UniPG>> */
595         fprintf(stream, "%d\n", cstr_info->main_head_start);
596 /* <<UniPG */
597         fprintf(stream, "%d\n", cstr_info->main_head_end);
598         fprintf(stream, "%d\n", cstr_info->codestream_size);
599         
600         fprintf(stream, "\nINFO ON TILES\n");
601         fprintf(stream, "tileno start_pos  end_hd  end_tile"
602 /* UniPG>> */
603                 "   nbparts"
604 /* <<UniPG */
605                 "         disto     nbpix   disto/nbpix\n");
606         for (tileno = 0; tileno < cstr_info->tw * cstr_info->th; tileno++) {
607                 fprintf(stream, "%4d %9d %9d %9d "
608 /* UniPG>> */
609                         "%9d "
610 /* <<UniPG */
611                         "%9e %9d %9e\n",
612                         cstr_info->tile[tileno].num_tile,
613                         cstr_info->tile[tileno].start_pos,
614                         cstr_info->tile[tileno].end_header,
615                         cstr_info->tile[tileno].end_pos,
616 /* UniPG>> */
617                         cstr_info->tile[tileno].num_tps,
618 /* <<UniPG */
619                         cstr_info->tile[tileno].distotile, cstr_info->tile[tileno].nbpix,
620                         cstr_info->tile[tileno].distotile / cstr_info->tile[tileno].nbpix);
621         }
622                 
623         for (tileno = 0; tileno < cstr_info->tw * cstr_info->th; tileno++) {
624                 int start_pos, end_ph_pos, end_pos;
625                 double disto = 0;
626                 pack_nb = 0;
627
628                 fprintf(stream, "\nTILE %d DETAILS\n", tileno); 
629 /* UniPG>> */
630                 fprintf(stream, "part_nb tileno   pack_nb start_pos end_tph_pos   end_pos\n");
631                 for (tilepartno = 0; tilepartno < cstr_info->tile[tileno].num_tps; tilepartno++)
632                         fprintf(stream, "%4d %9d %9d %9d %11d %9d\n",
633                                 tilepartno, tileno,
634                                 cstr_info->tile[tileno].tp_num[tilepartno],
635                                 cstr_info->tile[tileno].tp_start_pos[tilepartno],
636                                 cstr_info->tile[tileno].tp_end_header[tilepartno],
637                                 cstr_info->tile[tileno].tp_end_pos[tilepartno]
638                                 );
639 /* <<UniPG */
640                 if (cstr_info->prog == LRCP) {  /* LRCP */
641
642                         fprintf(stream, "LRCP\npack_nb tileno layno resno compno precno start_pos end_ph_pos end_pos disto\n");
643
644                         for (layno = 0; layno < cstr_info->layer; layno++) {
645                                 for (resno = 0; resno < cstr_info->decomposition + 1; resno++) {
646                                         for (compno = 0; compno < cstr_info->comp; compno++) {
647                                                 int prec_max = cstr_info->tile[tileno].pw[resno] * cstr_info->tile[tileno].ph[resno];
648                                                 for (precno = 0; precno < prec_max; precno++) {
649                                                         start_pos = cstr_info->tile[tileno].packet[pack_nb].start_pos;
650                                                         end_ph_pos = cstr_info->tile[tileno].packet[pack_nb].end_ph_pos;
651                                                         end_pos = cstr_info->tile[tileno].packet[pack_nb].end_pos;
652                                                         disto = cstr_info->tile[tileno].packet[pack_nb].disto;
653                                                         fprintf(stream, "%4d %6d %7d %5d %6d  %6d    %6d     %6d %7d %8e\n",
654                                                                 pack_nb, tileno, layno, resno, compno, precno, start_pos, end_ph_pos, end_pos, disto);
655                                                         total_disto += disto;
656                                                         pack_nb++;
657                                                 }
658                                         }
659                                 }
660                         }
661                 } /* LRCP */
662                 else if (cstr_info->prog == RLCP) {     /* RLCP */
663
664                         fprintf(stream, "RLCP\npack_nb tileno resno layno compno precno start_pos end_ph_pos end_pos disto\n");
665
666                         for (resno = 0; resno < cstr_info->decomposition + 1; resno++) {
667                                 for (layno = 0; layno < cstr_info->layer; layno++) {
668                                         for (compno = 0; compno < cstr_info->comp; compno++) {
669                                                 int prec_max = cstr_info->tile[tileno].pw[resno] * cstr_info->tile[tileno].ph[resno];
670                                                 for (precno = 0; precno < prec_max; precno++) {
671                                                         start_pos = cstr_info->tile[tileno].packet[pack_nb].start_pos;
672                                                         end_ph_pos = cstr_info->tile[tileno].packet[pack_nb].end_ph_pos;
673                                                         end_pos = cstr_info->tile[tileno].packet[pack_nb].end_pos;
674                                                         disto = cstr_info->tile[tileno].packet[pack_nb].disto;
675                                                         fprintf(stream, "%4d %6d %5d %7d %6d %6d %9d   %9d %7d %8e\n",
676                                                                 pack_nb, tileno, resno, layno, compno, precno, start_pos, end_ph_pos, end_pos, disto);
677                                                         total_disto += disto;
678                                                         pack_nb++;
679                                                 }
680                                         }
681                                 }
682                         }
683                 } /* RLCP */
684                 else if (cstr_info->prog == RPCL) {     /* RPCL */
685
686                         fprintf(stream, "RPCL\npack_nb tileno resno precno compno layno start_pos end_ph_pos end_pos disto\n"); 
687
688                         for (resno = 0; resno < cstr_info->decomposition + 1; resno++) {
689                                 /* I suppose components have same XRsiz, YRsiz */
690                                 int x0 = cstr_info->tile_Ox + tileno - (int)floor((float)tileno/(float)cstr_info->tw ) * cstr_info->tw * cstr_info->tile_x;
691                                 int y0 = cstr_info->tile_Ox + (int)floor( (float)tileno/(float)cstr_info->tw ) * cstr_info->tile_y;
692                                 int x1 = x0 + cstr_info->tile_x;
693                                 int y1 = y0 + cstr_info->tile_y;
694                                 for (compno = 0; compno < cstr_info->comp; compno++) {
695                                         int prec_max = cstr_info->tile[tileno].pw[resno] * cstr_info->tile[tileno].ph[resno];
696                                         for (precno = 0; precno < prec_max; precno++) {
697                                                 int pcnx = cstr_info->tile[tileno].pw[resno];
698                                                 int pcx = (int) pow( 2, cstr_info->tile[tileno].pdx[resno] + cstr_info->decomposition - resno );
699                                                 int pcy = (int) pow( 2, cstr_info->tile[tileno].pdy[resno] + cstr_info->decomposition - resno );
700                                                 int precno_x = precno - (int) floor( (float)precno/(float)pcnx ) * pcnx;
701                                                 int precno_y = (int) floor( (float)precno/(float)pcnx );
702                                                 for(y = y0; y < y1; y++) {                                                      
703                                                         if (precno_y*pcy == y ) {
704                                                                 for (x = x0; x < x1; x++) {                                                                     
705                                                                         if (precno_x*pcx == x ) {
706                                                                                 for (layno = 0; layno < cstr_info->layer; layno++) {
707                                                                                         start_pos = cstr_info->tile[tileno].packet[pack_nb].start_pos;
708                                                                                         end_ph_pos = cstr_info->tile[tileno].packet[pack_nb].end_ph_pos;
709                                                                                         end_pos = cstr_info->tile[tileno].packet[pack_nb].end_pos;
710                                                                                         disto = cstr_info->tile[tileno].packet[pack_nb].disto;
711                                                                                         fprintf(stream, "%4d %6d %5d %6d %6d %7d %9d   %9d %7d %8e\n",
712                                                                                                 pack_nb, tileno, resno, precno, compno, layno, start_pos, end_ph_pos, end_pos, disto); 
713                                                                                         total_disto += disto;
714                                                                                         pack_nb++; 
715                                                                                 }
716                                                                         }
717                                                                 }/* x = x0..x1 */
718                                                         } 
719                                                 }  /* y = y0..y1 */
720                                         } /* precno */
721                                 } /* compno */
722                         } /* resno */
723                 } /* RPCL */
724                 else if (cstr_info->prog == PCRL) {     /* PCRL */
725                         /* I suppose components have same XRsiz, YRsiz */
726                         int x0 = cstr_info->tile_Ox + tileno - (int)floor( (float)tileno/(float)cstr_info->tw ) * cstr_info->tw * cstr_info->tile_x;
727                         int y0 = cstr_info->tile_Ox + (int)floor( (float)tileno/(float)cstr_info->tw ) * cstr_info->tile_y;
728                         int x1 = x0 + cstr_info->tile_x;
729                         int y1 = y0 + cstr_info->tile_y;
730
731                         fprintf(stream, "PCRL\npack_nb tileno precno compno resno layno start_pos end_ph_pos end_pos disto\n"); 
732
733                         for (compno = 0; compno < cstr_info->comp; compno++) {
734                                 for (resno = 0; resno < cstr_info->decomposition + 1; resno++) {
735                                         int prec_max = cstr_info->tile[tileno].pw[resno] * cstr_info->tile[tileno].ph[resno];
736                                         for (precno = 0; precno < prec_max; precno++) {
737                                                 int pcnx = cstr_info->tile[tileno].pw[resno];
738                                                 int pcx = (int) pow( 2, cstr_info->tile[tileno].pdx[resno] + cstr_info->decomposition - resno );
739                                                 int pcy = (int) pow( 2, cstr_info->tile[tileno].pdy[resno] + cstr_info->decomposition - resno );
740                                                 int precno_x = precno - (int) floor( (float)precno/(float)pcnx ) * pcnx;
741                                                 int precno_y = (int) floor( (float)precno/(float)pcnx );
742                                                 for(y = y0; y < y1; y++) {                                                      
743                                                         if (precno_y*pcy == y ) {
744                                                                 for (x = x0; x < x1; x++) {                                                                     
745                                                                         if (precno_x*pcx == x ) {
746                                                                                 for (layno = 0; layno < cstr_info->layer; layno++) {
747                                                                                         start_pos = cstr_info->tile[tileno].packet[pack_nb].start_pos;
748                                                                                         end_ph_pos = cstr_info->tile[tileno].packet[pack_nb].end_ph_pos;
749                                                                                         end_pos = cstr_info->tile[tileno].packet[pack_nb].end_pos;
750                                                                                         disto = cstr_info->tile[tileno].packet[pack_nb].disto;
751                                                                                         fprintf(stream, "%4d %6d %6d %6d %5d %7d %9d   %9d %7d %8e\n",
752                                                                                                 pack_nb, tileno, precno, compno, resno, layno, start_pos, end_ph_pos, end_pos, disto); 
753                                                                                         total_disto += disto;
754                                                                                         pack_nb++; 
755                                                                                 }
756                                                                         }
757                                                                 }/* x = x0..x1 */
758                                                         } 
759                                                 }  /* y = y0..y1 */
760                                         } /* precno */
761                                 } /* resno */
762                         } /* compno */
763                 } /* PCRL */
764                 else {  /* CPRL */
765
766                         fprintf(stream, "CPRL\npack_nb tileno compno precno resno layno start_pos end_ph_pos end_pos disto\n"); 
767
768                         for (compno = 0; compno < cstr_info->comp; compno++) {
769                                 /* I suppose components have same XRsiz, YRsiz */
770                                 int x0 = cstr_info->tile_Ox + tileno - (int)floor( (float)tileno/(float)cstr_info->tw ) * cstr_info->tw * cstr_info->tile_x;
771                                 int y0 = cstr_info->tile_Ox + (int)floor( (float)tileno/(float)cstr_info->tw ) * cstr_info->tile_y;
772                                 int x1 = x0 + cstr_info->tile_x;
773                                 int y1 = y0 + cstr_info->tile_y;
774                                 
775                                 for (resno = 0; resno < cstr_info->decomposition + 1; resno++) {
776                                         int prec_max = cstr_info->tile[tileno].pw[resno] * cstr_info->tile[tileno].ph[resno];
777                                         for (precno = 0; precno < prec_max; precno++) {
778                                                 int pcnx = cstr_info->tile[tileno].pw[resno];
779                                                 int pcx = (int) pow( 2, cstr_info->tile[tileno].pdx[resno] + cstr_info->decomposition - resno );
780                                                 int pcy = (int) pow( 2, cstr_info->tile[tileno].pdy[resno] + cstr_info->decomposition - resno );
781                                                 int precno_x = precno - (int) floor( (float)precno/(float)pcnx ) * pcnx;
782                                                 int precno_y = (int) floor( (float)precno/(float)pcnx );
783                                                 for(y = y0; y < y1; y++) {
784                                                         if (precno_y*pcy == y ) {
785                                                                 for (x = x0; x < x1; x++) {
786                                                                         if (precno_x*pcx == x ) {
787                                                                                 for (layno = 0; layno < cstr_info->layer; layno++) {
788                                                                                         start_pos = cstr_info->tile[tileno].packet[pack_nb].start_pos;
789                                                                                         end_ph_pos = cstr_info->tile[tileno].packet[pack_nb].end_ph_pos;
790                                                                                         end_pos = cstr_info->tile[tileno].packet[pack_nb].end_pos;
791                                                                                         disto = cstr_info->tile[tileno].packet[pack_nb].disto;
792                                                                                         fprintf(stream, "%4d %6d %6d %6d %5d %7d %9d   %9d %7d %8e\n",
793                                                                                                 pack_nb, tileno, compno, precno, resno, layno, start_pos, end_ph_pos, end_pos, disto); 
794                                                                                         total_disto += disto;
795                                                                                         pack_nb++; 
796                                                                                 }
797                                                                         }
798                                                                 }/* x = x0..x1 */
799                                                         }
800                                                 } /* y = y0..y1 */
801                                         } /* precno */
802                                 } /* resno */
803                         } /* compno */
804                 } /* CPRL */   
805         } /* tileno */
806         
807         fprintf(stream, "%8e\n", cstr_info->D_max); /* SE max */
808         fprintf(stream, "%.8e\n", total_disto); /* SE totale */
809         fclose(stream);
810
811         fprintf(stderr,"Generated index file %s\n", index);
812
813         return 0;
814 }
815
816 /* ------------------------------------------------------------------------------------ */
817
818 int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *parameters,
819                                                                                                         img_fol_t *img_fol, raw_cparameters_t *raw_cp) {
820         int i, j,totlen;
821         option_t long_option[]={
822                 {"cinema2K",REQ_ARG, NULL ,'w'},
823                 {"cinema4K",NO_ARG, NULL ,'y'},
824                 {"ImgDir",REQ_ARG, NULL ,'z'},
825                 {"TP",REQ_ARG, NULL ,'v'},
826                 {"SOP",NO_ARG, NULL ,'S'},
827                 {"EPH",NO_ARG, NULL ,'E'},
828                 {"OutFor",REQ_ARG, NULL ,'O'},
829                 {"POC",REQ_ARG, NULL ,'P'},
830         };
831
832         /* parse the command line */
833         const char optlist[] = "i:o:hr:q:n:b:c:t:p:s:SEM:x:R:d:T:If:P:C:F:"
834 #ifdef USE_JPWL
835                 "W:"
836 #endif /* USE_JPWL */
837                 ;
838
839         totlen=sizeof(long_option);
840         img_fol->set_out_format=0;
841         raw_cp->rawWidth = 0;
842
843         while (1) {
844     int c = getopt_long(argc, argv, optlist,long_option,totlen);
845                 if (c == -1)
846                         break;
847                 switch (c) {
848                         case 'i':                       /* input file */
849                         {
850                                 char *infile = optarg;
851                                 parameters->decod_format = get_file_format(infile);
852                                 switch(parameters->decod_format) {
853                                         case PGX_DFMT:
854                                         case PXM_DFMT:
855                                         case BMP_DFMT:
856                                         case TIF_DFMT:
857                                         case RAW_DFMT:
858                                         case TGA_DFMT:
859                                                 break;
860                                         default:
861                                                 fprintf(stderr,
862                                                         "!! Unrecognized format for infile : %s "
863               "[accept only *.pnm, *.pgm, *.ppm, *.pgx, *.bmp, *.tif, *.raw or *.tga] !!\n\n", 
864                                                         infile);
865                                                 return 1;
866                                 }
867                                 strncpy(parameters->infile, infile, sizeof(parameters->infile)-1);
868                         }
869                         break;
870
871                                 /* ----------------------------------------------------- */
872
873                         case 'o':                       /* output file */
874                         {
875                                 char *outfile = optarg;
876                                 parameters->cod_format = get_file_format(outfile);
877                                 switch(parameters->cod_format) {
878                                         case J2K_CFMT:
879                                         case JP2_CFMT:
880                                                 break;
881                                         default:
882                                                 fprintf(stderr, "Unknown output format image %s [only *.j2k, *.j2c or *.jp2]!! \n", outfile);
883                                                 return 1;
884                                 }
885                                 strncpy(parameters->outfile, outfile, sizeof(parameters->outfile)-1);
886                         }
887                         break;
888
889                                 /* ----------------------------------------------------- */
890                         case 'O':                       /* output format */
891                                 {
892                                         char outformat[50];
893                                         char *of = optarg;
894                                         sprintf(outformat,".%s",of);
895                                         img_fol->set_out_format = 1;
896                                         parameters->cod_format = get_file_format(outformat);
897                                         switch(parameters->cod_format) {
898                                                 case J2K_CFMT:
899                                                 case JP2_CFMT:
900                                                         img_fol->out_format = optarg;
901                                                         break;
902                                                 default:
903                                                         fprintf(stderr, "Unknown output format image [only j2k, j2c, jp2]!! \n");
904                                                         return 1;
905                                         }
906                                 }
907                                 break;
908
909
910                                 /* ----------------------------------------------------- */
911
912
913                         case 'r':                       /* rates rates/distorsion */
914                         {
915                                 char *s = optarg;
916                                 while (sscanf(s, "%f", &parameters->tcp_rates[parameters->tcp_numlayers]) == 1) {
917                                         parameters->tcp_numlayers++;
918                                         while (*s && *s != ',') {
919                                                 s++;
920                                         }
921                                         if (!*s)
922                                                 break;
923                                         s++;
924                                 }
925                                 parameters->cp_disto_alloc = 1;
926                         }
927                         break;
928
929                                 /* ----------------------------------------------------- */
930
931                         
932                         case 'F':                       /* Raw image format parameters */
933                         {
934                                 char signo;
935                                 char *s = optarg;
936                                 if (sscanf(s, "%d,%d,%d,%d,%c", &raw_cp->rawWidth, &raw_cp->rawHeight, &raw_cp->rawComp, &raw_cp->rawBitDepth, &signo) == 5) {
937                                         if (signo == 's') {
938                                                 raw_cp->rawSigned = true;
939                                                 fprintf(stdout,"\nRaw file parameters: %d,%d,%d,%d Signed\n", raw_cp->rawWidth, raw_cp->rawHeight, raw_cp->rawComp, raw_cp->rawBitDepth);
940                                         }
941                                         else if (signo == 'u') {
942                                                 raw_cp->rawSigned = false;
943                                                 fprintf(stdout,"\nRaw file parameters: %d,%d,%d,%d Unsigned\n", raw_cp->rawWidth, raw_cp->rawHeight, raw_cp->rawComp, raw_cp->rawBitDepth);
944                                         }
945                                         else {
946                                                 fprintf(stderr,"\nError: invalid raw image parameters: Unknown sign of raw file\n");
947                                                 fprintf(stderr,"Please use the Format option -F:\n");
948                                                 fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
949                                                 fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
950                                                 fprintf(stderr,"Aborting\n");
951                                         }                                       
952                                 }
953                                 else {
954                                         fprintf(stderr,"\nError: invalid raw image parameters\n");
955                                         fprintf(stderr,"Please use the Format option -F:\n");
956                                         fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
957                                                 fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
958                                         fprintf(stderr,"Aborting\n");
959                                         return 1;
960                                 }
961                         }
962                         break;
963
964                                 /* ----------------------------------------------------- */
965
966                         case 'q':                       /* add fixed_quality */
967                         {
968                                 char *s = optarg;
969                                 while (sscanf(s, "%f", &parameters->tcp_distoratio[parameters->tcp_numlayers]) == 1) {
970                                         parameters->tcp_numlayers++;
971                                         while (*s && *s != ',') {
972                                                 s++;
973                                         }
974                                         if (!*s)
975                                                 break;
976                                         s++;
977                                 }
978                                 parameters->cp_fixed_quality = 1;
979                         }
980                         break;
981
982                                 /* dda */
983                                 /* ----------------------------------------------------- */
984
985                         case 'f':                       /* mod fixed_quality (before : -q) */
986                         {
987                                 int *row = NULL, *col = NULL;
988                                 int numlayers = 0, numresolution = 0, matrix_width = 0;
989
990                                 char *s = optarg;
991                                 sscanf(s, "%d", &numlayers);
992                                 s++;
993                                 if (numlayers > 9)
994                                         s++;
995
996                                 parameters->tcp_numlayers = numlayers;
997                                 numresolution = parameters->numresolution;
998                                 matrix_width = numresolution * 3;
999                                 parameters->cp_matrice = (int *) malloc(numlayers * matrix_width * sizeof(int));
1000                                 s = s + 2;
1001
1002                                 for (i = 0; i < numlayers; i++) {
1003                                         row = &parameters->cp_matrice[i * matrix_width];
1004                                         col = row;
1005                                         parameters->tcp_rates[i] = 1;
1006                                         sscanf(s, "%d,", &col[0]);
1007                                         s += 2;
1008                                         if (col[0] > 9)
1009                                                 s++;
1010                                         col[1] = 0;
1011                                         col[2] = 0;
1012                                         for (j = 1; j < numresolution; j++) {
1013                                                 col += 3;
1014                                                 sscanf(s, "%d,%d,%d", &col[0], &col[1], &col[2]);
1015                                                 s += 6;
1016                                                 if (col[0] > 9)
1017                                                         s++;
1018                                                 if (col[1] > 9)
1019                                                         s++;
1020                                                 if (col[2] > 9)
1021                                                         s++;
1022                                         }
1023                                         if (i < numlayers - 1)
1024                                                 s++;
1025                                 }
1026                                 parameters->cp_fixed_alloc = 1;
1027                         }
1028                         break;
1029
1030                                 /* ----------------------------------------------------- */
1031
1032                         case 't':                       /* tiles */
1033                         {
1034                                 sscanf(optarg, "%d,%d", &parameters->cp_tdx, &parameters->cp_tdy);
1035                                 parameters->tile_size_on = true;
1036                         }
1037                         break;
1038
1039                                 /* ----------------------------------------------------- */
1040
1041                         case 'n':                       /* resolution */
1042                         {
1043                                 sscanf(optarg, "%d", &parameters->numresolution);
1044                         }
1045                         break;
1046
1047                                 /* ----------------------------------------------------- */
1048                         case 'c':                       /* precinct dimension */
1049                         {
1050                                 char sep;
1051                                 int res_spec = 0;
1052
1053                                 char *s = optarg;
1054                                 do {
1055                                         sep = 0;
1056                                         sscanf(s, "[%d,%d]%c", &parameters->prcw_init[res_spec],
1057                                  &parameters->prch_init[res_spec], &sep);
1058                                         parameters->csty |= 0x01;
1059                                         res_spec++;
1060                                         s = strpbrk(s, "]") + 2;
1061                                 }
1062                                 while (sep == ',');
1063                                 parameters->res_spec = res_spec;
1064                         }
1065                         break;
1066
1067                                 /* ----------------------------------------------------- */
1068
1069                         case 'b':                       /* code-block dimension */
1070                         {
1071                                 int cblockw_init = 0, cblockh_init = 0;
1072                                 sscanf(optarg, "%d,%d", &cblockw_init, &cblockh_init);
1073                                 if (cblockw_init * cblockh_init > 4096 || cblockw_init > 1024
1074                                         || cblockw_init < 4 || cblockh_init > 1024 || cblockh_init < 4) {
1075                                         fprintf(stderr,
1076                                                 "!! Size of code_block error (option -b) !!\n\nRestriction :\n"
1077             "    * width*height<=4096\n    * 4<=width,height<= 1024\n\n");
1078                                         return 1;
1079                                 }
1080                                 parameters->cblockw_init = cblockw_init;
1081                                 parameters->cblockh_init = cblockh_init;
1082                         }
1083                         break;
1084
1085                                 /* ----------------------------------------------------- */
1086
1087                         case 'x':                       /* creation of index file */
1088                         {
1089                                 char *index = optarg;
1090                                 strncpy(parameters->index, index, sizeof(parameters->index)-1);
1091                                 parameters->index_on = 1;
1092                         }
1093                         break;
1094
1095                                 /* ----------------------------------------------------- */
1096
1097                         case 'p':                       /* progression order */
1098                         {
1099                                 char progression[4];
1100
1101                                 strncpy(progression, optarg, 4);
1102                                 parameters->prog_order = give_progression(progression);
1103                                 if (parameters->prog_order == -1) {
1104                                         fprintf(stderr, "Unrecognized progression order "
1105             "[LRCP, RLCP, RPCL, PCRL, CPRL] !!\n");
1106                                         return 1;
1107                                 }
1108                         }
1109                         break;
1110
1111                                 /* ----------------------------------------------------- */
1112
1113                         case 's':                       /* subsampling factor */
1114                         {
1115                                 if (sscanf(optarg, "%d,%d", &parameters->subsampling_dx,
1116                                     &parameters->subsampling_dy) != 2) {
1117                                         fprintf(stderr, "'-s' sub-sampling argument error !  [-s dx,dy]\n");
1118                                         return 1;
1119                                 }
1120                         }
1121                         break;
1122
1123                                 /* ----------------------------------------------------- */
1124
1125                         case 'd':                       /* coordonnate of the reference grid */
1126                         {
1127                                 if (sscanf(optarg, "%d,%d", &parameters->image_offset_x0,
1128                                     &parameters->image_offset_y0) != 2) {
1129                                         fprintf(stderr, "-d 'coordonnate of the reference grid' argument "
1130             "error !! [-d x0,y0]\n");
1131                                         return 1;
1132                                 }
1133                         }
1134                         break;
1135
1136                                 /* ----------------------------------------------------- */
1137
1138                         case 'h':                       /* display an help description */
1139                                 encode_help_display();
1140                                 return 1;
1141
1142                                 /* ----------------------------------------------------- */
1143
1144                         case 'P':                       /* POC */
1145                         {
1146                                 int numpocs = 0;                /* number of progression order change (POC) default 0 */
1147                                 opj_poc_t *POC = NULL;  /* POC : used in case of Progression order change */
1148
1149                                 char *s = optarg;
1150                                 POC = parameters->POC;
1151
1152                                 while (sscanf(s, "T%d=%d,%d,%d,%d,%d,%4s", &POC[numpocs].tile,
1153                                         &POC[numpocs].resno0, &POC[numpocs].compno0,
1154                                         &POC[numpocs].layno1, &POC[numpocs].resno1,
1155                                         &POC[numpocs].compno1, &POC[numpocs].progorder) == 7) {
1156                                         POC[numpocs].prg1 = give_progression(POC[numpocs].progorder);
1157                                         numpocs++;
1158                                         while (*s && *s != '/') {
1159                                                 s++;
1160                                         }
1161                                         if (!*s) {
1162                                                 break;
1163                                         }
1164                                         s++;
1165                                 }
1166                                 parameters->numpocs = numpocs;
1167                         }
1168                         break;
1169
1170                                 /* ------------------------------------------------------ */
1171
1172                         case 'S':                       /* SOP marker */
1173                         {
1174                                 parameters->csty |= 0x02;
1175                         }
1176                         break;
1177
1178                                 /* ------------------------------------------------------ */
1179
1180                         case 'E':                       /* EPH marker */
1181                         {
1182                                 parameters->csty |= 0x04;
1183                         }
1184                         break;
1185
1186                                 /* ------------------------------------------------------ */
1187
1188                         case 'M':                       /* Mode switch pas tous au point !! */
1189                         {
1190                                 int value = 0;
1191                                 if (sscanf(optarg, "%d", &value) == 1) {
1192                                         for (i = 0; i <= 5; i++) {
1193                                                 int cache = value & (1 << i);
1194                                                 if (cache)
1195                                                         parameters->mode |= (1 << i);
1196                                         }
1197                                 }
1198                         }
1199                         break;
1200
1201                                 /* ------------------------------------------------------ */
1202
1203                         case 'R':                       /* ROI */
1204                         {
1205                                 if (sscanf(optarg, "OI:c=%d,U=%d", &parameters->roi_compno,
1206                                            &parameters->roi_shift) != 2) {
1207                                         fprintf(stderr, "ROI error !! [-ROI:c='compno',U='shift']\n");
1208                                         return 1;
1209                                 }
1210                         }
1211                         break;
1212
1213                                 /* ------------------------------------------------------ */
1214
1215                         case 'T':                       /* Tile offset */
1216                         {
1217                                 if (sscanf(optarg, "%d,%d", &parameters->cp_tx0, &parameters->cp_ty0) != 2) {
1218                                         fprintf(stderr, "-T 'tile offset' argument error !! [-T X0,Y0]");
1219                                         return 1;
1220                                 }
1221                         }
1222                         break;
1223
1224                                 /* ------------------------------------------------------ */
1225
1226                         case 'C':                       /* add a comment */
1227                         {
1228                                 parameters->cp_comment = (char*)malloc(strlen(optarg) + 1);
1229                                 if(parameters->cp_comment) {
1230                                         strcpy(parameters->cp_comment, optarg);
1231                                 }
1232                         }
1233                         break;
1234
1235
1236                                 /* ------------------------------------------------------ */
1237
1238                         case 'I':                       /* reversible or not */
1239                         {
1240                                 parameters->irreversible = 1;
1241                         }
1242                         break;
1243
1244                         /* ------------------------------------------------------ */
1245                         
1246                         case 'v':                       /* Tile part generation*/
1247                         {
1248                                 parameters->tp_flag = optarg[0];
1249                                 parameters->tp_on = 1;
1250                         }
1251                         break;  
1252
1253                                 /* ------------------------------------------------------ */
1254                         
1255                         case 'z':                       /* Image Directory path */
1256                         {
1257                                 img_fol->imgdirpath = (char*)malloc(strlen(optarg) + 1);
1258                                 strcpy(img_fol->imgdirpath,optarg);
1259                                 img_fol->set_imgdir=1;
1260                         }
1261                         break;
1262
1263                                 /* ------------------------------------------------------ */
1264                         
1265                         case 'w':                       /* Digital Cinema 2K profile compliance*/
1266                         {
1267                                 int fps=0;
1268                                 sscanf(optarg,"%d",&fps);
1269                                 if(fps == 24){
1270                                         parameters->cp_cinema = CINEMA2K_24;
1271                                 }else if(fps == 48 ){
1272                                         parameters->cp_cinema = CINEMA2K_48;
1273                                 }else {
1274                                         fprintf(stderr,"Incorrect value!! must be 24 or 48\n");
1275                                         return 1;
1276                                 }
1277                                 fprintf(stdout,"CINEMA 2K compliant codestream\n");
1278                                 parameters->cp_rsiz = CINEMA2K;
1279                                 
1280                         }
1281                         break;
1282                                 
1283                                 /* ------------------------------------------------------ */
1284                         
1285                         case 'y':                       /* Digital Cinema 4K profile compliance*/
1286                         {
1287                                 parameters->cp_cinema = CINEMA4K_24;
1288                                 fprintf(stdout,"CINEMA 4K compliant codestream\n");
1289                                 parameters->cp_rsiz = CINEMA4K;
1290                         }
1291                         break;
1292                                 
1293                                 /* ------------------------------------------------------ */
1294
1295 /* UniPG>> */
1296 #ifdef USE_JPWL
1297                                 /* ------------------------------------------------------ */
1298                         
1299                         case 'W':                       /* JPWL capabilities switched on */
1300                         {
1301                                 char *token = NULL;
1302                                 int hprot, pprot, sens, addr, size, range;
1303
1304                                 /* we need to enable indexing */
1305                                 if (!parameters->index_on) {
1306                                         strncpy(parameters->index, JPWL_PRIVATEINDEX_NAME, sizeof(parameters->index)-1);
1307                                         parameters->index_on = 1;
1308                                 }
1309
1310                                 /* search for different protection methods */
1311
1312                                 /* break the option in comma points and parse the result */
1313                                 token = strtok(optarg, ",");
1314                                 while(token != NULL) {
1315
1316                                         /* search header error protection method */
1317                                         if (*token == 'h') {
1318
1319                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1320
1321                                                 hprot = 1; /* predefined method */
1322
1323                                                 if(sscanf(token, "h=%d", &hprot) == 1) {
1324                                                         /* Main header, specified */
1325                                                         if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
1326                                                                 ((hprot >= 37) && (hprot <= 128)))) {
1327                                                                 fprintf(stderr, "ERROR -> invalid main header protection method h = %d\n", hprot);
1328                                                                 return 1;
1329                                                         }
1330                                                         parameters->jpwl_hprot_MH = hprot;
1331
1332                                                 } else if(sscanf(token, "h%d=%d", &tile, &hprot) == 2) {
1333                                                         /* Tile part header, specified */
1334                                                         if (!((hprot == 0) || (hprot == 1) || (hprot == 16) || (hprot == 32) ||
1335                                                                 ((hprot >= 37) && (hprot <= 128)))) {
1336                                                                 fprintf(stderr, "ERROR -> invalid tile part header protection method h = %d\n", hprot);
1337                                                                 return 1;
1338                                                         }
1339                                                         if (tile < 0) {
1340                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method t = %d\n", tile);
1341                                                                 return 1;
1342                                                         }
1343                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1344                                                                 parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
1345                                                                 parameters->jpwl_hprot_TPH[tilespec++] = hprot;
1346                                                         }
1347
1348                                                 } else if(sscanf(token, "h%d", &tile) == 1) {
1349                                                         /* Tile part header, unspecified */
1350                                                         if (tile < 0) {
1351                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method t = %d\n", tile);
1352                                                                 return 1;
1353                                                         }
1354                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1355                                                                 parameters->jpwl_hprot_TPH_tileno[tilespec] = lasttileno = tile;
1356                                                                 parameters->jpwl_hprot_TPH[tilespec++] = hprot;
1357                                                         }
1358
1359
1360                                                 } else if (!strcmp(token, "h")) {
1361                                                         /* Main header, unspecified */
1362                                                         parameters->jpwl_hprot_MH = hprot;
1363
1364                                                 } else {
1365                                                         fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
1366                                                         return 1;
1367                                                 };
1368
1369                                         }
1370
1371                                         /* search packet error protection method */
1372                                         if (*token == 'p') {
1373
1374                                                 static int pack = 0, tile = 0, packspec = 0, lastpackno = 0;
1375
1376                                                 pprot = 1; /* predefined method */
1377
1378                                                 if (sscanf(token, "p=%d", &pprot) == 1) {
1379                                                         /* Method for all tiles and all packets */
1380                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1381                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1382                                                                 fprintf(stderr, "ERROR -> invalid default packet protection method p = %d\n", pprot);
1383                                                                 return 1;
1384                                                         }
1385                                                         parameters->jpwl_pprot_tileno[0] = 0;
1386                                                         parameters->jpwl_pprot_packno[0] = 0;
1387                                                         parameters->jpwl_pprot[0] = pprot;
1388
1389                                                 } else if (sscanf(token, "p%d=%d", &tile, &pprot) == 2) {
1390                                                         /* method specified from that tile on */
1391                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1392                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1393                                                                 fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1394                                                                 return 1;
1395                                                         }
1396                                                         if (tile < 0) {
1397                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1398                                                                 return 1;
1399                                                         }
1400                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1401                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1402                                                                 parameters->jpwl_pprot_packno[packspec] = 0;
1403                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1404                                                         }
1405
1406                                                 } else if (sscanf(token, "p%d:%d=%d", &tile, &pack, &pprot) == 3) {
1407                                                         /* method fully specified from that tile and that packet on */
1408                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1409                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1410                                                                 fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1411                                                                 return 1;
1412                                                         }
1413                                                         if (tile < 0) {
1414                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1415                                                                 return 1;
1416                                                         }
1417                                                         if (pack < 0) {
1418                                                                 fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n", pack);
1419                                                                 return 1;
1420                                                         }
1421                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1422                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1423                                                                 parameters->jpwl_pprot_packno[packspec] = pack;
1424                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1425                                                         }
1426
1427                                                 } else if (sscanf(token, "p%d:%d", &tile, &pack) == 2) {
1428                                                         /* default method from that tile and that packet on */
1429                                                         if (!((pprot == 0) || (pprot == 1) || (pprot == 16) || (pprot == 32) ||
1430                                                                 ((pprot >= 37) && (pprot <= 128)))) {
1431                                                                 fprintf(stderr, "ERROR -> invalid packet protection method p = %d\n", pprot);
1432                                                                 return 1;
1433                                                         }
1434                                                         if (tile < 0) {
1435                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1436                                                                 return 1;
1437                                                         }
1438                                                         if (pack < 0) {
1439                                                                 fprintf(stderr, "ERROR -> invalid packet number on protection method p = %d\n", pack);
1440                                                                 return 1;
1441                                                         }
1442                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1443                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1444                                                                 parameters->jpwl_pprot_packno[packspec] = pack;
1445                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1446                                                         }
1447
1448                                                 } else if (sscanf(token, "p%d", &tile) == 1) {
1449                                                         /* default from a tile on */
1450                                                         if (tile < 0) {
1451                                                                 fprintf(stderr, "ERROR -> invalid tile part number on protection method p = %d\n", tile);
1452                                                                 return 1;
1453                                                         }
1454                                                         if (packspec < JPWL_MAX_NO_PACKSPECS) {
1455                                                                 parameters->jpwl_pprot_tileno[packspec] = tile;
1456                                                                 parameters->jpwl_pprot_packno[packspec] = 0;
1457                                                                 parameters->jpwl_pprot[packspec++] = pprot;
1458                                                         }
1459
1460
1461                                                 } else if (!strcmp(token, "p")) {
1462                                                         /* all default */
1463                                                         parameters->jpwl_pprot_tileno[0] = 0;
1464                                                         parameters->jpwl_pprot_packno[0] = 0;
1465                                                         parameters->jpwl_pprot[0] = pprot;
1466
1467                                                 } else {
1468                                                         fprintf(stderr, "ERROR -> invalid protection method selection = %s\n", token);
1469                                                         return 1;
1470                                                 };
1471
1472                                         }
1473
1474                                         /* search sensitivity method */
1475                                         if (*token == 's') {
1476
1477                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1478
1479                                                 sens = 0; /* predefined: relative error */
1480
1481                                                 if(sscanf(token, "s=%d", &sens) == 1) {
1482                                                         /* Main header, specified */
1483                                                         if ((sens < -1) || (sens > 7)) {
1484                                                                 fprintf(stderr, "ERROR -> invalid main header sensitivity method s = %d\n", sens);
1485                                                                 return 1;
1486                                                         }
1487                                                         parameters->jpwl_sens_MH = sens;
1488
1489                                                 } else if(sscanf(token, "s%d=%d", &tile, &sens) == 2) {
1490                                                         /* Tile part header, specified */
1491                                                         if ((sens < -1) || (sens > 7)) {
1492                                                                 fprintf(stderr, "ERROR -> invalid tile part header sensitivity method s = %d\n", sens);
1493                                                                 return 1;
1494                                                         }
1495                                                         if (tile < 0) {
1496                                                                 fprintf(stderr, "ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
1497                                                                 return 1;
1498                                                         }
1499                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1500                                                                 parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
1501                                                                 parameters->jpwl_sens_TPH[tilespec++] = sens;
1502                                                         }
1503
1504                                                 } else if(sscanf(token, "s%d", &tile) == 1) {
1505                                                         /* Tile part header, unspecified */
1506                                                         if (tile < 0) {
1507                                                                 fprintf(stderr, "ERROR -> invalid tile part number on sensitivity method t = %d\n", tile);
1508                                                                 return 1;
1509                                                         }
1510                                                         if (tilespec < JPWL_MAX_NO_TILESPECS) {
1511                                                                 parameters->jpwl_sens_TPH_tileno[tilespec] = lasttileno = tile;
1512                                                                 parameters->jpwl_sens_TPH[tilespec++] = hprot;
1513                                                         }
1514
1515                                                 } else if (!strcmp(token, "s")) {
1516                                                         /* Main header, unspecified */
1517                                                         parameters->jpwl_sens_MH = sens;
1518
1519                                                 } else {
1520                                                         fprintf(stderr, "ERROR -> invalid sensitivity method selection = %s\n", token);
1521                                                         return 1;
1522                                                 };
1523                                                 
1524                                                 parameters->jpwl_sens_size = 2; /* 2 bytes for default size */
1525                                         }
1526
1527                                         /* search addressing size */
1528                                         if (*token == 'a') {
1529
1530                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1531
1532                                                 addr = 0; /* predefined: auto */
1533
1534                                                 if(sscanf(token, "a=%d", &addr) == 1) {
1535                                                         /* Specified */
1536                                                         if ((addr != 0) && (addr != 2) && (addr != 4)) {
1537                                                                 fprintf(stderr, "ERROR -> invalid addressing size a = %d\n", addr);
1538                                                                 return 1;
1539                                                         }
1540                                                         parameters->jpwl_sens_addr = addr;
1541
1542                                                 } else if (!strcmp(token, "a")) {
1543                                                         /* default */
1544                                                         parameters->jpwl_sens_addr = addr; /* auto for default size */
1545
1546                                                 } else {
1547                                                         fprintf(stderr, "ERROR -> invalid addressing selection = %s\n", token);
1548                                                         return 1;
1549                                                 };
1550                                                 
1551                                         }
1552
1553                                         /* search sensitivity size */
1554                                         if (*token == 'z') {
1555
1556                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1557
1558                                                 size = 1; /* predefined: 1 byte */
1559
1560                                                 if(sscanf(token, "z=%d", &size) == 1) {
1561                                                         /* Specified */
1562                                                         if ((size != 0) && (size != 1) && (size != 2)) {
1563                                                                 fprintf(stderr, "ERROR -> invalid sensitivity size z = %d\n", size);
1564                                                                 return 1;
1565                                                         }
1566                                                         parameters->jpwl_sens_size = size;
1567
1568                                                 } else if (!strcmp(token, "a")) {
1569                                                         /* default */
1570                                                         parameters->jpwl_sens_size = size; /* 1 for default size */
1571
1572                                                 } else {
1573                                                         fprintf(stderr, "ERROR -> invalid size selection = %s\n", token);
1574                                                         return 1;
1575                                                 };
1576                                                 
1577                                         }
1578
1579                                         /* search range method */
1580                                         if (*token == 'g') {
1581
1582                                                 static int tile = 0, tilespec = 0, lasttileno = 0;
1583
1584                                                 range = 0; /* predefined: 0 (packet) */
1585
1586                                                 if(sscanf(token, "g=%d", &range) == 1) {
1587                                                         /* Specified */
1588                                                         if ((range < 0) || (range > 3)) {
1589                                                                 fprintf(stderr, "ERROR -> invalid sensitivity range method g = %d\n", range);
1590                                                                 return 1;
1591                                                         }
1592                                                         parameters->jpwl_sens_range = range;
1593
1594                                                 } else if (!strcmp(token, "g")) {
1595                                                         /* default */
1596                                                         parameters->jpwl_sens_range = range;
1597
1598                                                 } else {
1599                                                         fprintf(stderr, "ERROR -> invalid range selection = %s\n", token);
1600                                                         return 1;
1601                                                 };
1602                                                 
1603                                         }
1604
1605                                         /* next token or bust */
1606                                         token = strtok(NULL, ",");
1607                                 };
1608
1609
1610                                 /* some info */
1611                                 fprintf(stdout, "Info: JPWL capabilities enabled\n");
1612                                 parameters->jpwl_epc_on = true;
1613
1614                         }
1615                         break;
1616 #endif /* USE_JPWL */
1617 /* <<UniPG */
1618
1619                                 /* ------------------------------------------------------ */
1620
1621                         default:
1622                                 fprintf(stderr, "ERROR -> Command line not valid\n");
1623                                 return 1;
1624                 }
1625         }
1626
1627         /* check for possible errors */
1628         if (parameters->cp_cinema){
1629                 if(parameters->tcp_numlayers > 1){
1630                         parameters->cp_rsiz = STD_RSIZ;
1631         fprintf(stdout,"Warning: DC profiles do not allow more than one quality layer. The codestream created will not be compliant with the DC profile\n");
1632                 }
1633         }
1634         if(img_fol->set_imgdir == 1){
1635                 if(!(parameters->infile[0] == 0)){
1636                         fprintf(stderr, "Error: options -ImgDir and -i cannot be used together !!\n");
1637                         return 1;
1638                 }
1639                 if(img_fol->set_out_format == 0){
1640                         fprintf(stderr, "Error: When -ImgDir is used, -OutFor <FORMAT> must be used !!\n");
1641                         fprintf(stderr, "Only one format allowed! Valid formats are j2k and jp2!!\n");
1642                         return 1;
1643                 }
1644                 if(!((parameters->outfile[0] == 0))){
1645                         fprintf(stderr, "Error: options -ImgDir and -o cannot be used together !!\n");
1646                         fprintf(stderr, "Specify OutputFormat using -OutFor<FORMAT> !!\n");
1647                         return 1;
1648                 }
1649         }else{
1650                 if((parameters->infile[0] == 0) || (parameters->outfile[0] == 0)) {
1651                         fprintf(stderr, "Error: One of the options; -i or -ImgDir must be specified\n");
1652                         fprintf(stderr, "Error: When using -i; -o must be used\n");
1653                         fprintf(stderr, "usage: image_to_j2k -i image-file -o j2k/jp2-file (+ options)\n");
1654                         return 1;
1655                 }
1656         }
1657
1658         if (parameters->decod_format == RAW_DFMT && raw_cp->rawWidth == 0) {
1659                         fprintf(stderr,"\nError: invalid raw image parameters\n");
1660                         fprintf(stderr,"Please use the Format option -F:\n");
1661                         fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
1662                                                 fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
1663                         fprintf(stderr,"Aborting\n");
1664                         return 1;
1665         }
1666
1667         if ((parameters->cp_disto_alloc || parameters->cp_fixed_alloc || parameters->cp_fixed_quality)
1668                 && (!(parameters->cp_disto_alloc ^ parameters->cp_fixed_alloc ^ parameters->cp_fixed_quality))) {
1669                 fprintf(stderr, "Error: options -r -q and -f cannot be used together !!\n");
1670                 return 1;
1671         }                               /* mod fixed_quality */
1672
1673         /* if no rate entered, lossless by default */
1674         if (parameters->tcp_numlayers == 0) {
1675                 parameters->tcp_rates[0] = 0;   /* MOD antonin : losslessbug */
1676                 parameters->tcp_numlayers++;
1677                 parameters->cp_disto_alloc = 1;
1678         }
1679
1680         if((parameters->cp_tx0 > parameters->image_offset_x0) || (parameters->cp_ty0 > parameters->image_offset_y0)) {
1681                 fprintf(stderr,
1682                         "Error: Tile offset dimension is unnappropriate --> TX0(%d)<=IMG_X0(%d) TYO(%d)<=IMG_Y0(%d) \n",
1683                         parameters->cp_tx0, parameters->image_offset_x0, parameters->cp_ty0, parameters->image_offset_y0);
1684                 return 1;
1685         }
1686
1687         for (i = 0; i < parameters->numpocs; i++) {
1688                 if (parameters->POC[i].prg == -1) {
1689                         fprintf(stderr,
1690                                 "Unrecognized progression order in option -P (POC n %d) [LRCP, RLCP, RPCL, PCRL, CPRL] !!\n",
1691                                 i + 1);
1692                 }
1693         }
1694
1695         return 0;
1696 }
1697
1698 /* -------------------------------------------------------------------------- */
1699
1700 /**
1701 sample error callback expecting a FILE* client object
1702 */
1703 void error_callback(const char *msg, void *client_data) {
1704         FILE *stream = (FILE*)client_data;
1705         fprintf(stream, "[ERROR] %s", msg);
1706 }
1707 /**
1708 sample warning callback expecting a FILE* client object
1709 */
1710 void warning_callback(const char *msg, void *client_data) {
1711         FILE *stream = (FILE*)client_data;
1712         fprintf(stream, "[WARNING] %s", msg);
1713 }
1714 /**
1715 sample debug callback expecting a FILE* client object
1716 */
1717 void info_callback(const char *msg, void *client_data) {
1718         FILE *stream = (FILE*)client_data;
1719         fprintf(stream, "[INFO] %s", msg);
1720 }
1721
1722 /* -------------------------------------------------------------------------- */
1723
1724 int main(int argc, char **argv) {
1725         bool bSuccess;
1726         opj_cparameters_t parameters;   /* compression parameters */
1727         img_fol_t img_fol;
1728         opj_event_mgr_t event_mgr;              /* event manager */
1729         opj_image_t *image = NULL;
1730         int i,num_images;
1731         int imageno;
1732         dircnt_t *dirptr;
1733         raw_cparameters_t raw_cp;
1734         opj_codestream_info_t cstr_info;
1735
1736         /*
1737         configure the event callbacks (not required)
1738         setting of each callback is optionnal
1739         */
1740         memset(&event_mgr, 0, sizeof(opj_event_mgr_t));
1741         event_mgr.error_handler = error_callback;
1742         event_mgr.warning_handler = warning_callback;
1743         event_mgr.info_handler = info_callback;
1744
1745         /* set encoding parameters to default values */
1746         opj_set_default_encoder_parameters(&parameters);
1747
1748         /* parse input and get user encoding parameters */
1749         if(parse_cmdline_encoder(argc, argv, &parameters,&img_fol, &raw_cp) == 1) {
1750                 return 0;
1751         }
1752         
1753         if (parameters.cp_cinema){
1754                 cinema_parameters(&parameters);
1755         }                               
1756
1757         /* Create comment for codestream */
1758         if(parameters.cp_comment == NULL) {
1759     const char comment[] = "Created by OpenJPEG version ";
1760                 const size_t clen = strlen(comment);
1761     const char *version = opj_version();
1762 /* UniPG>> */
1763 #ifdef USE_JPWL
1764                 parameters.cp_comment = (char*)malloc(clen+strlen(version)+11);
1765                 sprintf(parameters.cp_comment,"%s%s with JPWL", comment, version);
1766 #else
1767                 parameters.cp_comment = (char*)malloc(clen+strlen(version)+1);
1768                 sprintf(parameters.cp_comment,"%s%s", comment, version);
1769 #endif
1770 /* <<UniPG */
1771         }
1772
1773         /* Read directory if necessary */
1774         if(img_fol.set_imgdir==1){
1775                 num_images=get_num_images(img_fol.imgdirpath);
1776                 dirptr=(dircnt_t*)malloc(sizeof(dircnt_t));
1777                 if(dirptr){
1778                         dirptr->filename_buf = (char*)malloc(num_images*OPJ_PATH_LEN*sizeof(char));     // Stores at max 10 image file names
1779                         dirptr->filename = (char**) malloc(num_images*sizeof(char*));
1780                         if(!dirptr->filename_buf){
1781                                 return 0;
1782                         }
1783                         for(i=0;i<num_images;i++){
1784                                 dirptr->filename[i] = dirptr->filename_buf + i*OPJ_PATH_LEN;
1785                         }
1786                 }
1787                 if(load_images(dirptr,img_fol.imgdirpath)==1){
1788                         return 0;
1789                 }
1790                 if (num_images==0){
1791                         fprintf(stdout,"Folder is empty\n");
1792                         return 0;
1793                 }
1794         }else{
1795                 num_images=1;
1796         }
1797         /*Encoding image one by one*/
1798         for(imageno=0;imageno<num_images;imageno++)     {
1799                 image = NULL;
1800                 fprintf(stderr,"\n");
1801                 
1802                 if(img_fol.set_imgdir==1){
1803                         if (get_next_file(imageno, dirptr,&img_fol, &parameters)) {
1804                                 fprintf(stderr,"skipping file...\n");
1805                                 continue;
1806                         }
1807                 }
1808                 switch(parameters.decod_format) {
1809                         case PGX_DFMT:
1810                                 break;
1811                         case PXM_DFMT:
1812                                 break;
1813                         case BMP_DFMT:
1814                                 break;
1815                         case TIF_DFMT:
1816                                 break;
1817                         case RAW_DFMT:
1818                                 break;
1819                         case TGA_DFMT:
1820                                 break;
1821                         default:
1822                                 fprintf(stderr,"skipping file...\n");
1823                                 continue;                       
1824                 }
1825
1826                         /* decode the source image */
1827                         /* ----------------------- */
1828
1829                         switch (parameters.decod_format) {
1830                                 case PGX_DFMT:
1831                                         image = pgxtoimage(parameters.infile, &parameters);
1832                                         if (!image) {
1833                                                 fprintf(stderr, "Unable to load pgx file\n");
1834                                                 return 1; 
1835                                         }
1836                                         break;
1837
1838                                 case PXM_DFMT:
1839                                         image = pnmtoimage(parameters.infile, &parameters);
1840                                         if (!image) {
1841                                                 fprintf(stderr, "Unable to load pnm file\n");
1842                                                 return 1;
1843                                         }
1844                                         break;
1845
1846                                 case BMP_DFMT:
1847                                         image = bmptoimage(parameters.infile, &parameters);
1848                                         if (!image) {
1849                                                 fprintf(stderr, "Unable to load bmp file\n");
1850                                                 return 1;
1851                                         }
1852                                         break;
1853                         
1854                                 case TIF_DFMT:
1855                                         image = tiftoimage(parameters.infile, &parameters);
1856                                         if (!image) {
1857                                                 fprintf(stderr, "Unable to load tiff file\n");
1858                                                 return 1;
1859                                         }
1860                                 break;
1861
1862                                 case RAW_DFMT:
1863                                         image = rawtoimage(parameters.infile, &parameters, &raw_cp);
1864                                         if (!image) {
1865                                                 fprintf(stderr, "Unable to load raw file\n");
1866                                                 return 1;
1867                                         }
1868                                 break;
1869
1870                                 case TGA_DFMT:
1871                                         image = tgatoimage(parameters.infile, &parameters);
1872                                         if (!image) {
1873                                                 fprintf(stderr, "Unable to load tga file\n");
1874                                                 return 1;
1875                                         }
1876                                 break;
1877                 }
1878                         /* Decide if MCT should be used */
1879                         parameters.tcp_mct = image->numcomps == 3 ? 1 : 0;
1880
1881                         if(parameters.cp_cinema){
1882                                 cinema_setup_encoder(&parameters,image);
1883                         }
1884
1885                         /* encode the destination image */
1886                         /* ---------------------------- */
1887
1888                         if (parameters.cod_format == J2K_CFMT) {        /* J2K format output */
1889                                 int codestream_length;
1890                                 opj_cio_t *cio = NULL;
1891                                 FILE *f = NULL;
1892
1893                                 /* get a J2K compressor handle */
1894                                 opj_cinfo_t* cinfo = opj_create_compress(CODEC_J2K);
1895
1896                                 /* catch events using our callbacks and give a local context */
1897                                 opj_set_event_mgr((opj_common_ptr)cinfo, &event_mgr, stderr);
1898
1899                                 /* setup the encoder parameters using the current image and user parameters */
1900                                 opj_setup_encoder(cinfo, &parameters, image);
1901
1902                                 /* open a byte stream for writing */
1903                                 /* allocate memory for all tiles */
1904                                 cio = opj_cio_open((opj_common_ptr)cinfo, NULL, 0);
1905
1906                                 /* encode the image */
1907                                 bSuccess = opj_encode(cinfo, cio, image, &cstr_info);
1908                                 if (!bSuccess) {
1909                                         opj_cio_close(cio);
1910                                         fprintf(stderr, "failed to encode image\n");
1911                                         return 1;
1912                                 }
1913                                 codestream_length = cio_tell(cio);
1914
1915                                 /* write the buffer to disk */
1916                                 f = fopen(parameters.outfile, "wb");
1917                                 if (!f) {
1918                                         fprintf(stderr, "failed to open %s for writing\n", parameters.outfile);
1919                                         return 1;
1920                                 }
1921                                 fwrite(cio->buffer, 1, codestream_length, f);
1922                                 fclose(f);
1923
1924                                 fprintf(stderr,"Generated outfile %s\n",parameters.outfile);
1925                                 /* close and free the byte stream */
1926                                 opj_cio_close(cio);
1927
1928                                 /* Write the index to disk */
1929                                 if (parameters.index_on) {
1930                                         bSuccess = write_index_file(&cstr_info, parameters.index);
1931                                         if (bSuccess) {
1932                                                 fprintf(stderr, "Failed to output index file\n");
1933                                         }
1934                                 }
1935
1936                                 /* free remaining compression structures */
1937                                 opj_destroy_compress(cinfo);
1938                         } else {                        /* JP2 format output */
1939                                 int codestream_length;
1940                                 opj_cio_t *cio = NULL;
1941                                 FILE *f = NULL;
1942
1943                                 /* get a JP2 compressor handle */
1944                                 opj_cinfo_t* cinfo = opj_create_compress(CODEC_JP2);
1945
1946                                 /* catch events using our callbacks and give a local context */
1947                                 opj_set_event_mgr((opj_common_ptr)cinfo, &event_mgr, stderr);                   
1948
1949                                 /* setup the encoder parameters using the current image and using user parameters */
1950                                 opj_setup_encoder(cinfo, &parameters, image);
1951
1952                                 /* open a byte stream for writing */
1953                                 /* allocate memory for all tiles */
1954                                 cio = opj_cio_open((opj_common_ptr)cinfo, NULL, 0);
1955
1956                                 /* encode the image */
1957                                 bSuccess = opj_encode(cinfo, cio, image, &cstr_info);
1958                                 if (!bSuccess) {
1959                                         opj_cio_close(cio);
1960                                         fprintf(stderr, "failed to encode image\n");
1961                                         return 1;
1962                                 }
1963                                 codestream_length = cio_tell(cio);
1964
1965                                 /* write the buffer to disk */
1966                                 f = fopen(parameters.outfile, "wb");
1967                                 if (!f) {
1968                                         fprintf(stderr, "failed to open %s for writing\n", parameters.outfile);
1969                                         return 1;
1970                                 }
1971                                 fwrite(cio->buffer, 1, codestream_length, f);
1972                                 fclose(f);
1973                                 fprintf(stderr,"Generated outfile %s\n",parameters.outfile);
1974                                 /* close and free the byte stream */
1975                                 opj_cio_close(cio);
1976                                 
1977                                 /* Write the index to disk */
1978                                 if (parameters.index_on) {
1979                                         bSuccess = write_index_file(&cstr_info, parameters.index);
1980                                         if (bSuccess) {
1981                                                 fprintf(stderr, "Failed to output index file\n");
1982                                         }
1983                                 }
1984
1985                                 /* free remaining compression structures */
1986                                 opj_destroy_compress(cinfo);
1987
1988                         }
1989         
1990                         /* free image data */
1991                         opj_image_destroy(image);
1992         }
1993
1994         /* free user parameters structure */
1995   if(parameters.cp_comment) free(parameters.cp_comment);
1996         if(parameters.cp_matrice) free(parameters.cp_matrice);
1997
1998         return 0;
1999 }