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